Merge pull request #1457 from christopherdro/timer-doc-fix

[Docs] Grammatical change / Timer
This commit is contained in:
James Ide 2015-05-30 18:22:05 -07:00
commit 69ce448de9
1 changed files with 1 additions and 1 deletions

View File

@ -71,4 +71,4 @@ var Component = React.createClass({
});
```
We highly recommend never using bare timers and always using this mixin, it will save you from a lot of hard to track down bugs.
We strongly discourage using the global `setTimeout(...)` and recommend instead that you use `this.setTimeout(...)` provided by react-timer-mixin. This will eliminate a lot of hard work tracking down bugs, such as crashes caused by timeouts firing after a component has been unmounted.