From ddb326a029755dba0412be9ccab08cfc9a15866e Mon Sep 17 00:00:00 2001 From: Greg Roodt Date: Sat, 15 Jun 2013 10:15:42 +0300 Subject: [PATCH] Update tutorial.md The ajax call happens every 5 seconds, not every 60 seconds. --- docs/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial.md b/docs/tutorial.md index 8117b2ba..bc5b02c5 100644 --- a/docs/tutorial.md +++ b/docs/tutorial.md @@ -435,7 +435,7 @@ React.renderComponent( ``` -All we have done here is move the AJAX call to a separate method and call it when the component is first loaded and every 60 seconds after that. Try running this in your browser and changing the `comments.json` file; within 5 seconds, the changes will show! +All we have done here is move the AJAX call to a separate method and call it when the component is first loaded and every 5 seconds after that. Try running this in your browser and changing the `comments.json` file; within 5 seconds, the changes will show! ## Adding new comments