Merge pull request #3422 from jviereck/doc-typo-fix

Fix small typo ("of" instead of "or")
This commit is contained in:
Jim 2015-03-16 11:03:06 -07:00
commit fb2999076c
1 changed files with 1 additions and 1 deletions

View File

@ -200,7 +200,7 @@ class HelloMessage extends React.Component {
React.render(<HelloMessage name="Sebastian" />, mountNode); React.render(<HelloMessage name="Sebastian" />, mountNode);
``` ```
The API is similar to `React.createClass` with the exception or `getInitialState`. Instead of providing a separate `getInitialState` method, you set up your own `state` property in the constructor. The API is similar to `React.createClass` with the exception of `getInitialState`. Instead of providing a separate `getInitialState` method, you set up your own `state` property in the constructor.
Another difference is that `propTypes` and `defaultProps` are defined as properties on the constructor instead of in the class body. Another difference is that `propTypes` and `defaultProps` are defined as properties on the constructor instead of in the class body.