From 536681aa5d3cd647a103db88d47e8a5dd2089354 Mon Sep 17 00:00:00 2001 From: Adam Zapletal Date: Sat, 18 Apr 2015 18:36:18 -0500 Subject: [PATCH] Fix missing line highlight in tutorial --- docs/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial.md b/docs/tutorial.md index cbeac6603..82c711b0d 100644 --- a/docs/tutorial.md +++ b/docs/tutorial.md @@ -480,7 +480,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-13,16-19} +```javascript{3-14,16-19} // tutorial16.js var CommentForm = React.createClass({ handleSubmit: function(e) {