From 62213e08df0bb75ab8d03f462f4a1814c883eaea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9liton=20Nordt?= Date: Tue, 3 Feb 2015 08:38:16 -0200 Subject: [PATCH] Fix highlighting --- 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 169dbd3772..ed302860d5 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,17-20} +```javascript{3-13,16-19} // tutorial16.js var CommentForm = React.createClass({ handleSubmit: function(e) {