Merge pull request #277 from stoyan/patch-1

typo fix
This commit is contained in:
Christopher Chedeau
2013-08-19 11:45:51 -07:00

View File

@@ -84,7 +84,7 @@ The file `build/helloworld.js` is autogenerated whenever you make a change.
/** @jsx React.DOM */
React.renderComponent(
React.DOM.h1(null, 'Hello, world!'),
document.getElementyById('example')
document.getElementById('example')
);
```