From 6603bdea3df44ab97935bbf9c3c6484785be8c2f Mon Sep 17 00:00:00 2001 From: Christopher Wray <53663762+cwray-tech@users.noreply.github.com> Date: Mon, 9 Mar 2020 06:07:41 -0700 Subject: [PATCH] Updated sentence grammar. (#2459) --- content/tutorial/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/tutorial/tutorial.md b/content/tutorial/tutorial.md index 12e943c5..4db18156 100644 --- a/content/tutorial/tutorial.md +++ b/content/tutorial/tutorial.md @@ -290,7 +290,7 @@ class Square extends React.Component { >Note > ->In [JavaScript classes](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes), you need to always call `super` when defining the constructor of a subclass. All React component classes that have a `constructor` should start it with a `super(props)` call. +>In [JavaScript classes](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes), you need to always call `super` when defining the constructor of a subclass. All React component classes that have a `constructor` should start with a `super(props)` call. Now we'll change the Square's `render` method to display the current state's value when clicked: