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:
parent
ec68536e08
commit
bc718fd729
|
@ -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
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue