Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[docs] Fix two typos in Lists.md #12397

Merged
merged 2 commits into from
Aug 3, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/material-ui/src/List/List.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ export const styles = {
padding: 0,
position: 'relative',
},
/* Styles applied to the root element if `disablePddding={false}`. */
/* Styles applied to the root element if `disablePadding={false}`. */
padding: {
paddingTop: 8,
paddingBottom: 8,
},
/* Styles applied to the root element if `dense={true}` & `disablePddding={false}`. */
/* Styles applied to the root element if `dense={true}` & `disablePadding={false}`. */
dense: {
paddingTop: 4,
paddingBottom: 4,
Expand Down
4 changes: 2 additions & 2 deletions pages/api/list.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ This property accepts the following keys:
| Name | Description |
|:-----|:------------|
| <span class="prop-name">root</span> | Styles applied to the root element.
| <span class="prop-name">padding</span> | Styles applied to the root element if `disablePddding={false}`.
| <span class="prop-name">dense</span> | Styles applied to the root element if `dense={true}` & `disablePddding={false}`.
| <span class="prop-name">padding</span> | Styles applied to the root element if `disablePadding={false}`.
| <span class="prop-name">dense</span> | Styles applied to the root element if `dense={true}` & `disablePadding={false}`.
| <span class="prop-name">subheader</span> | Styles applied to the root element if a `subheader` is provided.

Have a look at [overriding with classes](/customization/overrides#overriding-with-classes) section
Expand Down