changed
`To make it simpler for to access your new functionality ...`

to
`To make it simpler to access your new functionality ...`
This commit is contained in:
Harry Moreno 2015-09-20 19:30:51 -04:00
Родитель ddd6fe3fae
Коммит 7f067921a6
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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
/**