From 21300896dc7d9ed416e2ca94841e38625f32b9fd Mon Sep 17 00:00:00 2001 From: Sergey Korzh Date: Sun, 7 Jan 2018 17:27:36 +0300 Subject: [PATCH] Removed unnecessary dot. (#494) --- 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 afe5e267c..2cd9faba5 100644 --- a/content/tutorial/tutorial.md +++ b/content/tutorial/tutorial.md @@ -1053,7 +1053,7 @@ Add a method called `jumpTo` to the Game class: } ``` -Then update `stepNumber` when a new move is made by adding `stepNumber: history.length` to the state update in Game's `handleClick`. We'll also update `handleClick` to be aware of `stepNumber` when reading the current board state so that you can go back in time then click in the board to create a new entry.: +Then update `stepNumber` when a new move is made by adding `stepNumber: history.length` to the state update in Game's `handleClick`. We'll also update `handleClick` to be aware of `stepNumber` when reading the current board state so that you can go back in time then click in the board to create a new entry: ```javascript{2,13} handleClick(i) {