From d52b6f27bc776dcf300f89051c00a0e2d057cc6e Mon Sep 17 00:00:00 2001 From: jim Date: Wed, 17 Feb 2016 16:26:27 -0800 Subject: [PATCH] Clearify callback text in the tutorial --- docs/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial.md b/docs/tutorial.md index 68aa755a1..0878bd6d6 100755 --- a/docs/tutorial.md +++ b/docs/tutorial.md @@ -620,7 +620,7 @@ var CommentBox = React.createClass({ }); ``` -Let's call the callback from the `CommentForm` when the user submits the form: +Now that `CommentBox` has made the callback available to `CommentForm` via the `onCommentSubmit` prop, the `CommentForm` can call the callback when the user submits the form: ```javascript{19} // tutorial19.js