From 589c0a25dfa18c2090549cc6f5b626d69ea53c2a Mon Sep 17 00:00:00 2001 From: Dan Abramov Date: Tue, 3 Oct 2017 17:03:18 +0100 Subject: [PATCH] Update button labels --- docs/tutorial/tutorial.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/tutorial/tutorial.md b/docs/tutorial/tutorial.md index 72b2735bc0..2aa369f695 100644 --- a/docs/tutorial/tutorial.md +++ b/docs/tutorial/tutorial.md @@ -901,8 +901,8 @@ Let's show the previous moves made in the game so far. We learned earlier that R const moves = history.map((step, move) => { const desc = move ? - 'Move #' + move : - 'Game start'; + 'Go to move #' + move : + 'Go to game start'; return (
  • @@ -988,8 +988,8 @@ For our move list, we already have a unique ID for each step: the number of the ```js{6} const moves = history.map((step, move) => { const desc = move ? - 'Move #' + move : - 'Game start'; + 'Go to move #' + move : + 'Go to game start'; return (