From 76d6ed9b78bfd009244aa4bb063e1657f278f952 Mon Sep 17 00:00:00 2001 From: Ben Alpert Date: Thu, 22 Jan 2015 08:27:29 -0800 Subject: [PATCH] Merge pull request #2902 from swestwood/patch-2 Correctly highlight changed line in tutorial. --- docs/docs/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/tutorial.md b/docs/docs/tutorial.md index 0837e3012a..64470ee093 100644 --- a/docs/docs/tutorial.md +++ b/docs/docs/tutorial.md @@ -482,7 +482,7 @@ var CommentForm = React.createClass({ Let's make the form interactive. When the user submits the form, we should clear it, submit a request to the server, and refresh the list of comments. To start, let's listen for the form's submit event and clear it. -```javascript{3-14,18-20} +```javascript{3-14,17-20} // tutorial16.js var CommentForm = React.createClass({ handleSubmit: function(e) {