Fixed an incorrect word in the blurTextInput() documentation.

Summary:
In `TextInputState`'s `blurTextInput()` documentation, the parameter description`id of the text field to focus` should be `id of the text field to unfocus`, since this is `blurTextInput` and not `focusTextInput`.

N/A (just documentation fix).
Closes https://github.com/facebook/react-native/pull/14367

Differential Revision: D5200263

Pulled By: shergin

fbshipit-source-id: b3e9ab60e555ad9050474b59a728761180618190
This commit is contained in:
Justin Stanley 2017-06-20 19:21:27 -07:00 committed by Facebook Github Bot
parent ec68536e08
commit bc718fd729
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ var TextInputState = {
},
/**
* @param {number} textFieldID id of the text field to focus
* @param {number} textFieldID id of the text field to unfocus
* Unfocuses the specified text field
* noop if it wasn't focused
*/