From a2efa51b9227a2224bb23006c33e4aa06afc8070 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 --- 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 2aa369f6951a1..bac325b57943b 100644 --- a/docs/tutorial/tutorial.md +++ b/docs/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 `