From 4466837e05ba426d94c4335363645894924f525d Mon Sep 17 00:00:00 2001 From: Alexandre Duret-Lutz Date: Fri, 3 Aug 2018 10:20:10 +0200 Subject: [PATCH 1/2] fix two typos in api/Lists.md --- pages/api/list.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/api/list.md b/pages/api/list.md index 1c76f22b984bd8..029d44acf79baa 100644 --- a/pages/api/list.md +++ b/pages/api/list.md @@ -33,8 +33,8 @@ This property accepts the following keys: | Name | Description | |:-----|:------------| | root | Styles applied to the root element. -| padding | Styles applied to the root element if `disablePddding={false}`. -| dense | Styles applied to the root element if `dense={true}` & `disablePddding={false}`. +| padding | Styles applied to the root element if `disablePadding={false}`. +| dense | Styles applied to the root element if `dense={true}` & `disablePadding={false}`. | subheader | Styles applied to the root element if a `subheader` is provided. Have a look at [overriding with classes](/customization/overrides#overriding-with-classes) section From 62b0ad827dc7b8049af92e28a100454ddea388eb Mon Sep 17 00:00:00 2001 From: Olivier Tassinari Date: Fri, 3 Aug 2018 20:51:42 +0200 Subject: [PATCH 2/2] yarn docs:api --- packages/material-ui/src/List/List.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/material-ui/src/List/List.js b/packages/material-ui/src/List/List.js index e246bc300e31f0..0e249883b6cc10 100644 --- a/packages/material-ui/src/List/List.js +++ b/packages/material-ui/src/List/List.js @@ -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,