diff --git a/docs/tutorial.md b/docs/tutorial.md index 2c8c121b..e5ebf7e8 100644 --- a/docs/tutorial.md +++ b/docs/tutorial.md @@ -388,7 +388,7 @@ var CommentBox = React.createClass({ `getInitialState()` executes exactly once during the lifecycle of the component and sets up the initial state of the component. #### Updating state -When the component is first created, we want to GET some JSON from the server and update the state to reflect the latest data. We're going to use jQuery to make an asynchronous request to the server we started earlier to fetch the data we need. It will look something like this: +When the component is first created, we want to GET some JSON from the server and update the state to reflect the latest data. We're going to use jQuery to make an asynchronous request to the server we started earlier to fetch the data we need. The data is already included in the server you started (based on the `comments.json` file), so once it's fetched, `this.state.data` will look something like this: ```json [