From 2d37da10dbb33751c70354c1f85b2f8a5233b92f 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. --- 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 d726a664e5..a965c71f3f 100644 --- a/docs/tutorial/tutorial.md +++ b/docs/tutorial/tutorial.md @@ -414,7 +414,7 @@ const moves = history.map((step, move) => { 'Move #' + move : 'Game start'; return ( -
  • +
  • this.jumpTo(move)}>{desc}
  • );