From a305ded256ccf3d9f88e5aaf89ec518187ad594d Mon Sep 17 00:00:00 2001 From: Dan Abramov Date: Wed, 4 Oct 2017 21:44:12 +0100 Subject: [PATCH] Tweak wording based on @landermkerbey's suggestion in #10433#issuecomment-324488168 --- tutorial/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorial/tutorial.md b/tutorial/tutorial.md index 2aa369f6..bac325b5 100644 --- a/tutorial/tutorial.md +++ b/tutorial/tutorial.md @@ -393,7 +393,7 @@ Now when the square is clicked, it calls the `onClick` function that was passed 4. Board passed `onClick={() => this.handleClick(i)}` to Square, so, when called, it runs `this.handleClick(i)` on the Board. 5. We have not defined the `handleClick()` method on the Board yet, so the code crashes. -Note that `onClick` on the DOM `