Skip to content

Commit a2716af

Browse files
committed
Fix minor things based on code review
1 parent 5b7559b commit a2716af

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

components/button-stateful/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ const propTypes = {
7878
*/
7979
stateThree: PropTypes.object,
8080
/**
81-
* Write <code>'-1'</code> if you don't want the user to tab to the button.
81+
* Write "-1" if you don't want the user to tab to the button.
8282
*/
8383
tabIndex: PropTypes.string,
8484
tooltip: PropTypes.node,

components/date-picker/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ module.exports = React.createClass({
260260
onInput,
261261
pattern,
262262
placeholder,
263-
...props
263+
...props // eslint-disable-line no-unused-vars
264264
} = this.props;
265265

266266
let isInline;

components/global-navigation-bar/link.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ GlobalNavigationBarLink.propTypes = {
127127
onMouseEnter: PropTypes.func,
128128
onMouseLeave: PropTypes.func,
129129
/**
130-
* Write <code>"-1"</code> if you don't want the user to tab to the button.
130+
* Write "-1" if you don't want the user to tab to the button.
131131
*/
132132
tabIndex: PropTypes.string
133133
};

0 commit comments

Comments
 (0)