Match setTimeout delay with documentation

This commit is contained in:
Daniel Gasienica
2014-05-08 11:47:24 -07:00
committed by Paul O’Shannessy
parent 76b2e87173
commit 7818b9f81f
+1 -1
View File
@@ -20,5 +20,5 @@ React.renderComponent(<input value="hi" />, mountNode);
setTimeout(function() {
React.renderComponent(<input value={null} />, mountNode);
}, 2000);
}, 1000);
```