diff --git a/packages/material-ui/src/Select/Select.js b/packages/material-ui/src/Select/Select.js
index b6d67d5fb2a67b..6be8d7cf5d1548 100644
--- a/packages/material-ui/src/Select/Select.js
+++ b/packages/material-ui/src/Select/Select.js
@@ -121,7 +121,6 @@ Select.propTypes = {
MenuProps: PropTypes.object,
/**
* If true, `value` must be an array and the menu will support multiple selections.
- * You can only use it when the `native` property is `false` (default).
*/
multiple: PropTypes.bool,
/**
diff --git a/pages/api/select.md b/pages/api/select.md
index 47c8864574f6f7..835ef5d6abe19a 100644
--- a/pages/api/select.md
+++ b/pages/api/select.md
@@ -26,7 +26,7 @@ import Select from '@material-ui/core/Select';
| input | element | <Input /> | An `Input` element; does not have to be a material-ui specific `Input`. |
| inputProps | object | | Attributes applied to the `input` element. When `native` is `true`, the attributes are applied on the `select` element. |
| MenuProps | object | | Properties applied to the [`Menu`](/api/menu/) element. |
-| multiple | bool | false | If true, `value` must be an array and the menu will support multiple selections. You can only use it when the `native` property is `false` (default). |
+| multiple | bool | false | If true, `value` must be an array and the menu will support multiple selections. |
| native | bool | false | If `true`, the component will be using a native `select` element. |
| onChange | func | | Callback function fired when a menu item is selected.
**Signature:**
`function(event: object, child?: object) => void`
*event:* The event source of the callback. You can pull out the new value by accessing `event.target.value`.
*child:* The react element that was selected when `native` is `false` (default). |
| onClose | func | | Callback fired when the component requests to be closed. Use in controlled mode (see open).
**Signature:**
`function(event: object) => void`
*event:* The event source of the callback |