Skip to content

Commit

Permalink
[Table] Remove duplicated word
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Jan 12, 2018
1 parent c4c5b19 commit e5d244b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pages/api/table-cell.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ filename: /src/Table/TableCell.js
| numeric | bool | false | If `true`, content will align to the right. |
| padding | enum:&nbsp;'default'&nbsp;&#124;<br>&nbsp;'checkbox'&nbsp;&#124;<br>&nbsp;'dense'&nbsp;&#124;<br>&nbsp;'none'<br> | 'default' | Sets the padding applied to the cell. |
| sortDirection | enum:&nbsp;'asc'&nbsp;&#124;<br>&nbsp;'desc'&nbsp;&#124;<br>&nbsp;false<br> | | Set aria-sort direction. |
| type | enum:&nbsp;'head'&nbsp;&#124;<br>&nbsp;'body'&nbsp;&#124;<br>&nbsp;'footer'<br> | | Specify the cell type. By default, the parent TableHead, TableBody or TableFooter parent component set the value. |
| type | enum:&nbsp;'head'&nbsp;&#124;<br>&nbsp;'body'&nbsp;&#124;<br>&nbsp;'footer'<br> | | Specify the cell type. By default, the TableHead, TableBody or TableFooter parent component set the value. |

Any other properties supplied will be [spread to the root element](/guides/api#spread).

Expand Down
2 changes: 1 addition & 1 deletion src/Table/TableCell.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ TableCell.propTypes = {
sortDirection: PropTypes.oneOf(['asc', 'desc', false]),
/**
* Specify the cell type.
* By default, the parent TableHead, TableBody or TableFooter parent component set the value.
* By default, the TableHead, TableBody or TableFooter parent component set the value.
*/
type: PropTypes.oneOf(['head', 'body', 'footer']),
};
Expand Down

0 comments on commit e5d244b

Please sign in to comment.