From 9571f2d8cb73a05ba72ad700b56d7012963624f8 Mon Sep 17 00:00:00 2001 From: Glen Baker Date: Wed, 17 Sep 2014 10:18:54 -0700 Subject: [PATCH] Fixed grammar is to are on line 183 Fixed "children components is called props" to "children components are called props". --- 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 8ca60436d44..77dc3c7327d 100644 --- a/docs/docs/tutorial.md +++ b/docs/docs/tutorial.md @@ -180,7 +180,7 @@ var CommentList = React.createClass({ }); ``` -Note that we have passed some data from the parent `CommentList` component to the child `Comment` components. For example, we passed *Pete Hunt* (via an attribute) and *This is one comment* (via an XML-like child node) to the first `Comment`. Data passed from parent to children components is called **props**, short for properties. +Note that we have passed some data from the parent `CommentList` component to the child `Comment` components. For example, we passed *Pete Hunt* (via an attribute) and *This is one comment* (via an XML-like child node) to the first `Comment`. Data passed from parent to children components are called **props**, short for properties. ### Using props