From 952bdca020ec4c5742539b6ce20b06023532d6ee Mon Sep 17 00:00:00 2001 From: Jason Grlicky Date: Sat, 22 Oct 2016 16:50:24 -0700 Subject: [PATCH] Fix for typos (#8046) --- docs/tutorial/tutorial.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tutorial/tutorial.md b/docs/tutorial/tutorial.md index b5d85f6d32..a965c71f3f 100644 --- a/docs/tutorial/tutorial.md +++ b/docs/tutorial/tutorial.md @@ -373,7 +373,7 @@ if (winner) {
this.handleClick(i)} + onClick={(i) => this.handleClick(i)} />
@@ -402,7 +402,7 @@ handleClick(i) { } ``` -At this point, Board only needs `renderStep` and `render`; the state initialization and click handler should both live in Game. +At this point, Board only needs `renderSquare` and `render`; the state initialization and click handler should both live in Game. ## Showing the Moves