From fdcf1f2b0ee205a0cd072dad96e059f2e8de6f60 Mon Sep 17 00:00:00 2001 From: Russ Date: Sat, 28 Mar 2015 11:37:55 -0700 Subject: [PATCH] Update tutorial.md Grammar fix --- 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 aa5f75e872..13907cf45c 100644 --- a/docs/docs/tutorial.md +++ b/docs/docs/tutorial.md @@ -168,7 +168,7 @@ Notice how we're mixing HTML tags and components we've built. HTML components ar ### Using props -Let's create the `Comment` component, which will depend on data passed in from it's parent. Data passed in from a parent component is available as a 'property' on the child component. These 'properties' are accessed through `this.props`. Using props we will be able to read the data passed to the `Comment` from the `CommentList`, and render some markup: +Let's create the `Comment` component, which will depend on data passed in from its parent. Data passed in from a parent component is available as a 'property' on the child component. These 'properties' are accessed through `this.props`. Using props we will be able to read the data passed to the `Comment` from the `CommentList`, and render some markup: ```javascript // tutorial4.js