Skip to content

Commit 41ac3cf

Browse files
rishi1999alexkrolick
authored andcommitted
Update CONTRIBUTING.md (reactjs#1234)
The code example directly before the statement "Use semicolons" was missing a semicolon :)
1 parent 5c3f61d commit 41ac3cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Instead, **do** write this:
7272
```js
7373
class MyComponent extends React.Component {
7474
constructor(props) {
75-
super(props)
75+
super(props);
7676
this.handleChange = this.handleChange.bind(this);
7777
this.state = {value: ''};
7878
}

0 commit comments

Comments
 (0)