Skip to content

Commit

Permalink
[Button Base] Fix typo (#31135)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jastor11 committed Feb 18, 2022
1 parent 9cd3b99 commit 04514ad
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/translations/api-docs/button-base/button-base.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"onFocusVisible": "Callback fired when the component is focused with a keyboard. We trigger a <code>onFocus</code> callback too.",
"sx": "The system prop that allows defining system overrides as well as additional CSS styles. See the <a href=\"/system/the-sx-prop/\">`sx` page</a> for more details.",
"TouchRippleProps": "Props applied to the <code>TouchRipple</code> element.",
"touchRippleRef": "A ref that points to the <code>TouchRippple</code> element."
"touchRippleRef": "A ref that points to the <code>TouchRipple</code> element."
},
"classDescriptions": {
"root": { "description": "Styles applied to the root element." },
Expand Down
2 changes: 1 addition & 1 deletion packages/mui-material/src/ButtonBase/ButtonBase.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export interface ButtonBaseTypeMap<P = {}, D extends React.ElementType = 'button
*/
TouchRippleProps?: Partial<TouchRippleProps>;
/**
* A ref that points to the `TouchRippple` element.
* A ref that points to the `TouchRipple` element.
*/
touchRippleRef?: React.Ref<TouchRippleActions>;
};
Expand Down
2 changes: 1 addition & 1 deletion packages/mui-material/src/ButtonBase/ButtonBase.js
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ ButtonBase.propTypes /* remove-proptypes */ = {
*/
TouchRippleProps: PropTypes.object,
/**
* A ref that points to the `TouchRippple` element.
* A ref that points to the `TouchRipple` element.
*/
touchRippleRef: PropTypes.oneOfType([
PropTypes.func,
Expand Down

0 comments on commit 04514ad

Please sign in to comment.