From 66b8e25b43c29b59d9ba182a3f1d7d6b5d4c4ad8 Mon Sep 17 00:00:00 2001 From: Sophia Date: Wed, 5 Oct 2016 14:29:55 -0700 Subject: [PATCH] removing parent/child references in props section of tutorial (#7887) --- docs/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial.md b/docs/tutorial.md index eb4b9f5d..367e3aef 100755 --- a/docs/tutorial.md +++ b/docs/tutorial.md @@ -181,7 +181,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 its parent, `CommentList`. 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 our `CommentList` component. Data passed in from the `CommentList` component is available as a 'property' on our `Comment` 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