Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update CONTRIBUTING.md (#1234)
The code example directly before the statement "Use semicolons" was missing a semicolon :)
  • Loading branch information
rishi1999 authored and alexkrolick committed Oct 7, 2018
1 parent 5c3f61d commit 41ac3cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Expand Up @@ -72,7 +72,7 @@ Instead, **do** write this:
```js
class MyComponent extends React.Component {
constructor(props) {
super(props)
super(props);
this.handleChange = this.handleChange.bind(this);
this.state = {value: ''};
}
Expand Down

0 comments on commit 41ac3cf

Please sign in to comment.