Skip to content

Commit c54f807

Browse files
laurent22Kudo
authored andcommitted
Fixed a few typos on README.md (#111)
Minor typos
1 parent 188a7bf commit c54f807

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ dependencies {
6868
+ "jsc-android": "241213.x.x",
6969
```
7070

71-
then run `npm install` or `yarn` (depending which npm client you use) in order for the new dependency to be installed in `node_modules`
71+
then run `npm install` or `yarn` (depending on which npm client you use) in order for the new dependency to be installed in `node_modules`
7272

73-
2. Modify `android/build.gradle` file to add new local maven repository packaged in the `jsc-android` package to the search path:
73+
2. Modify `android/build.gradle` file to add the new local maven repository packaged in the `jsc-android` package to the search path:
7474
```diff
7575
allprojects {
7676
repositories {
@@ -88,12 +88,12 @@ allprojects {
8888
}
8989
```
9090

91-
3. Update your app's `build.gradle` file located in `android/app/build.gradle` to add the JSC dependencey. Please make sure the dependency should put before React Native dependency.
91+
3. Update your app's `build.gradle` file located in `android/app/build.gradle` to add the JSC dependency. Please make sure the dependency is before the React Native dependency.
9292

9393
```diff
9494

9595
dependencies {
96-
+ // Make sure to put android-jsc at the the first
96+
+ // Make sure to put android-jsc at the top
9797
+ implementation "org.webkit:android-jsc:r241213"
9898
+
9999
compile fileTree(dir: "libs", include: ["*.jar"])
@@ -114,7 +114,7 @@ android {
114114
}
115115
```
116116

117-
5. You're done, rebuild your app and enjoy updated version of JSC on android!
117+
5. You're done - rebuild your app and enjoy the updated version of JSC on Android!
118118

119119
### For React Native version 0.58 below
120120

0 commit comments

Comments
 (0)