Skip to content

Commit

Permalink
multilines -> multiline
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Apr 14, 2019
1 parent 14dc2be commit ee4567f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/material-ui/src/ListItemText/ListItemText.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const styles = {
marginBottom: 4,
},
/* Styles applied to the `Typography` components if primary and secondary are set. */
multilines: {
multiline: {
marginTop: 6,
marginBottom: 6,
},
Expand Down Expand Up @@ -80,7 +80,7 @@ const ListItemText = React.forwardRef(function ListItemText(props, ref) {
{
[classes.dense]: dense,
[classes.inset]: inset,
[classes.multilines]: primary && secondary,
[classes.multiline]: primary && secondary,
},
className,
)}
Expand Down
2 changes: 1 addition & 1 deletion pages/api/list-item-text.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ This property accepts the following keys:
| Name | Description |
|:-----|:------------|
| <span class="prop-name">root</span> | Styles applied to the root element.
| <span class="prop-name">multilines</span> | Styles applied to the `Typography` components if primary and secondary are set.
| <span class="prop-name">multiline</span> | Styles applied to the `Typography` components if primary and secondary are set.
| <span class="prop-name">dense</span> | Styles applied to the `Typography` components if dense.
| <span class="prop-name">inset</span> | Styles applied to the root element if `inset={true}`.
| <span class="prop-name">primary</span> | Styles applied to the primary `Typography` component.
Expand Down

0 comments on commit ee4567f

Please sign in to comment.