Skip to content

Commit

Permalink
[TextareaAutosize] Update spelling in props (umber to number) (#16982)
Browse files Browse the repository at this point in the history
* Updated spelling in props (umber to number)

* apply diff to the source
  • Loading branch information
melwyn001 authored and oliviertassinari committed Aug 13, 2019
1 parent 9e4eba0 commit 67f4657
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/pages/api/textarea-autosize.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import TextareaAutosize from '@material-ui/core/TextareaAutosize';

| Name | Type | Default | Description |
|:-----|:-----|:--------|:------------|
| <span class="prop-name">rows</span> | <span class="prop-type">string<br>&#124;&nbsp;number</span> | | Minimum umber of rows to display. |
| <span class="prop-name">rows</span> | <span class="prop-type">string<br>&#124;&nbsp;number</span> | | Minimum number of rows to display. |
| <span class="prop-name">rowsMax</span> | <span class="prop-type">string<br>&#124;&nbsp;number</span> | | Maximum number of rows to display. |

The `ref` is forwarded to the root element.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ TextareaAutosize.propTypes = {
*/
placeholder: PropTypes.string,
/**
* Minimum umber of rows to display.
* Minimum number of rows to display.
*/
rows: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
/**
Expand Down

0 comments on commit 67f4657

Please sign in to comment.