Skip to content

Commit f35c03c

Browse files
authored
Fix indentation in no-unused-prop-types example.
1 parent 9bb68c1 commit f35c03c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/rules/no-unused-prop-types.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ var Hello = React.createClass({
2020
propTypes: {
2121
firstname: React.PropTypes.string.isRequired,
2222
middlename: React.PropTypes.string.isRequired, // middlename is never used below
23-
lastname: React.PropTypes.string.isRequired
23+
lastname: React.PropTypes.string.isRequired
2424
},
2525
render: function() {
2626
return <div>Hello {this.props.firstname} {this.props.lastname}</div>;

0 commit comments

Comments
 (0)