From 21560fec6d587ffa6930ea50a5665007ae89f383 Mon Sep 17 00:00:00 2001 From: Ben Alpert Date: Tue, 19 May 2015 19:27:01 -0700 Subject: [PATCH] Clarify tutorial instructions Fixes #3904. --- docs/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial.md b/docs/tutorial.md index bc8212d7..78cd0455 100644 --- a/docs/tutorial.md +++ b/docs/tutorial.md @@ -124,7 +124,7 @@ You do not have to return basic HTML. You can return a tree of components that y ## Composing components -Let's build skeletons for `CommentList` and `CommentForm` which will, again, be simple `
`s: +Let's build skeletons for `CommentList` and `CommentForm` which will, again, be simple `
`s. Add these two components to your file, keeping the existing `CommentBox` declaration and `React.render` call: ```javascript // tutorial2.js