Skip to content

Commit

Permalink
Matt's review
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Jun 23, 2020
1 parent 9cd98a3 commit ffbc514
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/pages/api-docs/form-control-label.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ The `MuiFormControlLabel` name can be used for providing [default props](/custom
|:-----|:-----|:--------|:------------|
| <span class="prop-name">checked</span> | <span class="prop-type">bool</span> | | If `true`, the component appears selected. |
| <span class="prop-name">classes</span> | <span class="prop-type">object</span> | | Override or extend the styles applied to the component. See [CSS API](#css) below for more details. |
| <span class="prop-name required">control<abbr title="required">*</abbr></span> | <span class="prop-type">element</span> | | A control element. For instance, it can be a `Radio`, a `Switch` or a `Checkbox`. |
| <span class="prop-name required">control<abbr title="required">*</abbr></span> | <span class="prop-type">element</span> | | A control element such as a `Radio`, `Switch` or `Checkbox`. |
| <span class="prop-name">disabled</span> | <span class="prop-type">bool</span> | | If `true`, the control will be disabled. |
| <span class="prop-name">inputRef</span> | <span class="prop-type">ref</span> | | Pass a ref to the `input` element. |
| <span class="prop-name">label</span> | <span class="prop-type">node</span> | | The text to be used in an enclosing label element. |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export interface FormControlLabelProps
*/
checked?: boolean;
/**
* A control element. For instance, it can be a `Radio`, a `Switch` or a `Checkbox`.
* A control element such as a `Radio`, `Switch` or `Checkbox`.
*/
control: React.ReactElement<any, any>;
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ FormControlLabel.propTypes = {
*/
className: PropTypes.string,
/**
* A control element. For instance, it can be a `Radio`, a `Switch` or a `Checkbox`.
* A control element such as a `Radio`, `Switch` or `Checkbox`.
*/
control: PropTypes.element.isRequired,
/**
Expand Down

0 comments on commit ffbc514

Please sign in to comment.