From 24978bc6e91cb9e65ed6dbe586f49057bab561dc Mon Sep 17 00:00:00 2001 From: Jun Kim Date: Sun, 23 Oct 2016 08:49:07 +0900 Subject: [PATCH] Fix illogical code in tutorial.md (#8048) The tutorial wants to throw a 'warning' and explains about 'key' of React's list, but it throws nothing since there is sensible key. "key={move}" should be removed, and added after explaining about key. --- tutorial/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorial/tutorial.md b/tutorial/tutorial.md index 82b39fb0..b5d85f6d 100644 --- a/tutorial/tutorial.md +++ b/tutorial/tutorial.md @@ -414,7 +414,7 @@ const moves = history.map((step, move) => { 'Move #' + move : 'Game start'; return ( -
  • +
  • this.jumpTo(move)}>{desc}
  • );