One-character typo fix

This commit is contained in:
Ben Alpert 2013-07-19 10:55:31 -07:00
parent 3d7ac69c39
commit 222faf4544
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ React.createClass({
someClass: React.PropTypes.instanceOf(SomeClass),
// You can chain any of the above with isRequired to make sure an error is
// thrown if the prop isn't provide.
// thrown if the prop isn't provided.
requiredFunc: React.PropTypes.func.isRequired
// You can also specify a custom validator.