From 08059218833b4ebf75d60adae0f201e23dd9b74c Mon Sep 17 00:00:00 2001 From: Veljko Tornjanski Date: Mon, 25 Jul 2016 20:59:15 +0200 Subject: [PATCH] Wording change in doc (#7348) --- docs/docs/05-reusable-components.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/05-reusable-components.md b/docs/docs/05-reusable-components.md index fff3c39a03..89d16b8317 100644 --- a/docs/docs/05-reusable-components.md +++ b/docs/docs/05-reusable-components.md @@ -132,7 +132,7 @@ var ComponentWithDefaultProps = React.createClass({ }); ``` -The result of `getDefaultProps()` will be cached and used to ensure that `this.props.value` will have a value if it was not specified by the parent component. This allows you to safely just use your props without having to write repetitive and fragile code to handle that yourself. +The result of `getDefaultProps()` will be cached and used to ensure that `this.props.value` will have a value if it was not specified by the owner component. This allows you to safely just use your props without having to write repetitive and fragile code to handle that yourself. ## Transferring Props: A Shortcut