Skip to content

Commit f4a07c4

Browse files
committed
Merge pull request #3635 from garethnic/reuseCompDoc
Clarify sentence in Reusable Components doc
2 parents f1cd867 + 5c35d93 commit f4a07c4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/docs/05-reusable-components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ The result of `getDefaultProps()` will be cached and used to ensure that `this.p
100100

101101
## Transferring Props: A Shortcut
102102

103-
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:
103+
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:
104104

105105
```javascript
106106
var CheckLink = React.createClass({

0 commit comments

Comments
 (0)