diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ecae447a..e10f4f53 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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: ''}; }