Fix TextInput API update nits

Summary:
Ref: 7e7c2b5d57 (r68444537)

Ref: 7e7c2b5d57 (r68444442)
Closes https://github.com/facebook/react-native/pull/8476

Differential Revision: D3494641

Pulled By: JoelMarcey

fbshipit-source-id: 9a75ff66ccb895deb2f5027bdffe5d5bfe898e41
This commit is contained in:
Joel Marcey 2016-06-28 14:51:00 -07:00 committed by Facebook Github Bot 6
parent eafc5dac62
commit 5c31ba5098
1 changed files with 2 additions and 2 deletions

View File

@ -361,7 +361,7 @@ const TextInput = React.createClass({
* - `focus()`
* - `update()`
*
* > You can refernce `DocumentSelectionState` in
* > You can reference `DocumentSelectionState` in
* > [`vendor/document/selection/DocumentSelectionState.js`](https://github.com/facebook/react-native/blob/master/Libraries/vendor/document/selection/DocumentSelectionState.js)
*
* @platform ios
@ -407,7 +407,7 @@ const TextInput = React.createClass({
* The default value is true for single-line fields and false for
* multiline fields. Note that for multiline fields, setting `blurOnSubmit`
* to `true` means that pressing return will blur the field and trigger the
* `onSubmitEditin`g event instead of inserting a newline into the field.
* `onSubmitEditing` event instead of inserting a newline into the field.
*/
blurOnSubmit: PropTypes.bool,
/**