From bc718fd72912b288d0267d4daf12d7b0cb1e2b7d Mon Sep 17 00:00:00 2001 From: Justin Stanley Date: Tue, 20 Jun 2017 19:21:27 -0700 Subject: [PATCH] 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 --- Libraries/Components/TextInput/TextInputState.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/Components/TextInput/TextInputState.js b/Libraries/Components/TextInput/TextInputState.js index 276bba0d7..7d17fe639 100644 --- a/Libraries/Components/TextInput/TextInputState.js +++ b/Libraries/Components/TextInput/TextInputState.js @@ -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 */