From 26d6df1d77d031492dc7033bddae8a54a8b1c57c Mon Sep 17 00:00:00 2001 From: Gareth Nicholson Date: Thu, 9 Apr 2015 12:16:21 +0200 Subject: [PATCH] clarify sentence --- docs/05-reusable-components.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/05-reusable-components.md b/docs/05-reusable-components.md index bca31705..d4f27606 100644 --- a/docs/05-reusable-components.md +++ b/docs/05-reusable-components.md @@ -100,7 +100,7 @@ The result of `getDefaultProps()` will be cached and used to ensure that `this.p ## Transferring Props: A Shortcut -A common type of React component is one that extends a basic HTML in a simple way. Often you'll want to copy any HTML attributes passed to your component to the underlying HTML element to save typing. You can use the JSX _spread_ syntax to achieve this: +A common type of React component is one that extends a basic HTML element in a simple way. Often you'll want to copy any HTML attributes passed to your component to the underlying HTML element to save typing. You can use the JSX _spread_ syntax to achieve this: ```javascript var CheckLink = React.createClass({