From 41ac3cf45d082e47edf76f2b25eb1d28ad6e9638 Mon Sep 17 00:00:00 2001 From: Rishi Advani Date: Sun, 7 Oct 2018 18:08:40 -0400 Subject: [PATCH] Update CONTRIBUTING.md (#1234) The code example directly before the statement "Use semicolons" was missing a semicolon :) --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: ''}; }