From 78e2030e95a9f6c26535c962e70efc4bbb275f8f Mon Sep 17 00:00:00 2001 From: Eli Perkins Date: Tue, 11 Jul 2017 10:49:11 -0700 Subject: [PATCH] Clean up -[RCTRootView cancelTouches] header docs Summary: Just a little typo fixing and wording clean up around some header docs. Closes https://github.com/facebook/react-native/pull/14947 Differential Revision: D5398609 Pulled By: javache fbshipit-source-id: 3eb40ef3308130c1d28b2efc7bb64d493e98825b --- React/Base/RCTRootView.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/React/Base/RCTRootView.h b/React/Base/RCTRootView.h index fba78ab6a..bb4c9b7f5 100644 --- a/React/Base/RCTRootView.h +++ b/React/Base/RCTRootView.h @@ -112,8 +112,8 @@ extern NSString *const RCTContentDidAppearNotification; /** * Calling this will result in emitting a "touches cancelled" event to js, - * which effectively cancels all js "gesture recognizers" such as as touchable - * (unless they explicitely ignore cancellation events, but noone should do that). + * which effectively cancels all js "gesture recognizers" such as touchable components + * (unless they explicitely ignore cancellation events, but no one should do that). * * This API is exposed for integration purposes where you embed RN rootView * in a native view with a native gesture recognizer,