Skip to content

Commit 8dc1cdb

Browse files
committed
Tweak tutorial wording to be more accurate
1 parent cd2aa12 commit 8dc1cdb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/docs/tutorial.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ prev: getting-started.html
66
next: videos.html
77
---
88

9-
We'll be building a simple, but realistic comments box that you can drop into a blog, similar to Disqus, LiveFyre or Facebook comments.
9+
We'll be building a simple, but realistic comments box that you can drop into a blog, a basic version of the realtime comments offered by Disqus, LiveFyre or Facebook comments.
1010

1111
We'll provide:
1212

@@ -409,7 +409,7 @@ var CommentBox = React.createClass({
409409
});
410410
```
411411

412-
Here, `componentWillMount` is a method called automatically by React before a component is rendered. The key to dynamic updates is the call to `this.setState()`. We replace the old array of comments with the new one from the server and the UI automatically updates itself. Because of this reactivity, it is trivial to add live updates. We will use simple polling here but you could easily use WebSockets or other technologies.
412+
Here, `componentWillMount` is a method called automatically by React before a component is rendered. The key to dynamic updates is the call to `this.setState()`. We replace the old array of comments with the new one from the server and the UI automatically updates itself. Because of this reactivity, it is only a minor change to add live updates. We will use simple polling here but you could easily use WebSockets or other technologies.
413413

414414
```javascript{3,16-17,31}
415415
// tutorial14.js

0 commit comments

Comments
 (0)