From 4e98dba6d337e89fe50d1e9120cac3c384e87aca Mon Sep 17 00:00:00 2001 From: Andrew Poliakov Date: Sun, 23 Oct 2016 15:49:55 +0300 Subject: [PATCH] Update tutorial.md, Taking Turns (#8058) --- docs/tutorial/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/tutorial.md b/docs/tutorial/tutorial.md index bc975de15e..516d9f9b86 100644 --- a/docs/tutorial/tutorial.md +++ b/docs/tutorial/tutorial.md @@ -254,7 +254,7 @@ You'll need to change `this.props` to `props` both times it appears. Many compon An obvious defect in our game is that only X can play. Let's fix that. -Let's default the first move to be by 'X'. Modify our starting state in our `Game` constructor. +Let's default the first move to be by 'X'. Modify our starting state in our `Board` constructor. ```javascript class Board extends React.Component {