From 636434fb3db64385b086e91a1bb0f4a325721cbd Mon Sep 17 00:00:00 2001 From: Heitor Althmann Date: Thu, 11 Oct 2018 17:13:59 -0300 Subject: [PATCH] Removed double "the" statement (#1245) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We’ll set **the the** first move to be “X” [...] --- 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 7d68bdec0..350289466 100644 --- a/content/tutorial/tutorial.md +++ b/content/tutorial/tutorial.md @@ -605,7 +605,7 @@ We have changed `this.props` to `props` both times it appears. We now need to fix an obvious defect in our tic-tac-toe game: the "O"s cannot be marked on the board. -We'll set the the first move to be "X" by default. We can set this default by modifying the initial state in our Board constructor: +We'll set the first move to be "X" by default. We can set this default by modifying the initial state in our Board constructor: ```javascript{6} class Board extends React.Component {