From 7f067921a64864184f2af70251f529cda70730d3 Mon Sep 17 00:00:00 2001 From: Harry Moreno Date: Sun, 20 Sep 2015 19:30:51 -0400 Subject: [PATCH] Fix Grammar changed `To make it simpler for to access your new functionality ...` to `To make it simpler to access your new functionality ...` --- docs/NativeModulesAndroid.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/NativeModulesAndroid.md b/docs/NativeModulesAndroid.md index 64a913c3a..e6fabbb82 100644 --- a/docs/NativeModulesAndroid.md +++ b/docs/NativeModulesAndroid.md @@ -119,7 +119,7 @@ mReactInstanceManager = ReactInstanceManager.builder() .build(); ``` -To make it simpler for to access your new functionality from JavaScript, it is common to wrap the native module in a JavaScript module. This is not necessary but saves the consumers of your library the need to pull it off of `NativeModules` each time. This JavaScript file also becomes a good location for you to add any JavaScript side functionality. +To make it simpler to access your new functionality from JavaScript, it is common to wrap the native module in a JavaScript module. This is not necessary but saves the consumers of your library the need to pull it off of `NativeModules` each time. This JavaScript file also becomes a good location for you to add any JavaScript side functionality. ```java /**