Skip to content

Commit a6b3110

Browse files
authored
Merge pull request joltup#195 from opakholis/fix-readme-typo
docs: media store typo
2 parents af520e5 + 6ba5e97 commit a6b3110

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
@@ -16,7 +16,7 @@ react-native-blob-util version 0.10.16 and up is only compatible with react nati
1616

1717
## Features
1818

19-
- Access and write data to Android MedaiaStore (e.g. Downloads folder on devices > Android 9)
19+
- Access and write data to Android Media Store (e.g. Downloads folder on devices > Android 9)
2020
- Transfer data directly from/to storage without BASE64 bridging
2121
- File API supports regular files, Asset files, and CameraRoll files
2222
- Native-to-native file manipulation API, reduce JS bridging performance loss
@@ -971,7 +971,7 @@ After `0.8.0` we've made some [Web API polyfills](https://github.com/RonRadtke/r
971971

972972
## Setting A File Transformer
973973

974-
Setting a file transformer will allow you to specify how data should be transformed whenever the library is writing into storage or reading from storage. A use case for this is if you want the files handled by this library to be encrypted.
974+
Setting a file transformer will allow you to specify how data should be transformed whenever the library is writing into storage or reading from storage. A use case for this is if you want the files handled by this library to be encrypted.
975975

976976
If you want to use a file transformer, you must implement an interface defined in:
977977

@@ -988,7 +988,7 @@ public class MainApplication extends Application implements ReactApplication {
988988
@Override
989989
public void onCreate() {
990990
...
991-
ReactNativeBlobUtilFileTransformer.sharedFileTransformer = new MyCustomEncryptor();
991+
ReactNativeBlobUtilFileTransformer.sharedFileTransformer = new MyCustomEncryptor();
992992
...
993993
}
994994
```
@@ -1005,8 +1005,8 @@ iOS:
10051005
}
10061006
```
10071007

1008-
Here are the places where the transformer would apply
1009-
- Reading a file from the file system
1008+
Here are the places where the transformer would apply
1009+
- Reading a file from the file system
10101010
- Writing a file into the file system
10111011
- Http response is downloaded to storage directly
10121012

0 commit comments

Comments
 (0)