From 494663ad608a0993d29523968405dd82341a3265 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) --- tutorial/tutorial.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorial/tutorial.md b/tutorial/tutorial.md index b5d85f6d..a965c71f 100644 --- a/tutorial/tutorial.md +++ b/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