From 7abffc3f8ce69fab5bbb4147f9b8bcb85a7d2c38 Mon Sep 17 00:00:00 2001 From: Igor Ganapolsky Date: Fri, 12 Jan 2018 07:47:37 -0800 Subject: [PATCH] punctuation and grammar Summary: Use a comma for clear punctuation, and use 'wants' verb. Use clear grammar for README file (Write your test plan here. If you changed any code, please provide us with clear instructions on how you verified your changes work. Bonus points for screenshots and videos!) (If this PR adds or changes functionality, please take some time to update the docs at https://github.com/facebook/react-native-website, and link to your PR here.) Closes https://github.com/facebook/react-native/pull/17545 Differential Revision: D6711711 Pulled By: hramos fbshipit-source-id: 315f66e5b36c4a3ffdc5407876cc0fc2ed596a56 --- .../src/main/java/com/facebook/react/ReactRootView.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ReactAndroid/src/main/java/com/facebook/react/ReactRootView.java b/ReactAndroid/src/main/java/com/facebook/react/ReactRootView.java index 045dab14fdb917..e5fafe5987e174 100644 --- a/ReactAndroid/src/main/java/com/facebook/react/ReactRootView.java +++ b/ReactAndroid/src/main/java/com/facebook/react/ReactRootView.java @@ -57,9 +57,9 @@ * ViewGroup#onInterceptTouchEvent} method in order to be notified about the events for all of its * children and it's also overriding {@link ViewGroup#requestDisallowInterceptTouchEvent} to make * sure that {@link ViewGroup#onInterceptTouchEvent} will get events even when some child view start - * intercepting it. In case when no child view is interested in handling some particular touch event + * intercepting it. In case when no child view is interested in handling some particular touch event, * this view's {@link View#onTouchEvent} will still return true in order to be notified about all - * subsequent touch events related to that gesture (in case when JS code want to handle that + * subsequent touch events related to that gesture (in case when JS code wants to handle that * gesture). */ public class ReactRootView extends SizeMonitoringFrameLayout