Browse Source

Merge pull request #50 from dphov/patch-1

Update README.md
wkh237 8 years ago
parent
commit
56b035f5ee
1 changed files with 4 additions and 4 deletions
  1. 4
    4
      README.md

+ 4
- 4
README.md View File

46
 
46
 
47
 **Grant Permission to External storage for Android 5.0 or lower**
47
 **Grant Permission to External storage for Android 5.0 or lower**
48
 
48
 
49
-Mechanism about granting Android permissions has slightly different since Android 6.0 released, please refer to [Officail Document](https://developer.android.com/training/permissions/requesting.html).
49
+Mechanism about granting Android permissions has slightly different since Android 6.0 released, please refer to [Official Document](https://developer.android.com/training/permissions/requesting.html).
50
 
50
 
51
-If you're going to access external storage (say, SD card storage) for `Android 5.0` (or lower) devices, you might have to add the following line to `AndroidManifetst.xml`.
51
+If you're going to access external storage (say, SD card storage) for `Android 5.0` (or lower) devices, you might have to add the following line to `AndroidManifest.xml`.
52
 
52
 
53
 ```diff
53
 ```diff
54
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
54
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
110
 
110
 
111
 #### Download to storage directly
111
 #### Download to storage directly
112
 
112
 
113
-The simplest way is give a `fileCach` option to config, and set it to `true`. This will let the incoming response data stored in a temporary path **wihout** any file extension.
113
+The simplest way is give a `fileCache` option to config, and set it to `true`. This will let the incoming response data stored in a temporary path **without** any file extension.
114
 
114
 
115
 **These files won't be removed automatically, please refer to [Cache File Management](#user-content-cache-file-management)**
115
 **These files won't be removed automatically, please refer to [Cache File Management](#user-content-cache-file-management)**
116
 
116
 
297
 
297
 
298
 #### Upload/Download progress
298
 #### Upload/Download progress
299
 
299
 
300
-In `version >= 0.4.2` it is possible to know the upload/download progress. On Anroid, only download progress is supported. See [wiki](https://github.com/wkh237/react-native-fetch-blob/wiki/Fetch-API#fetchprogresseventlistenerpromisernfetchblobresponse) for more information.
300
+In `version >= 0.4.2` it is possible to know the upload/download progress. On Android, only download progress is supported. See [wiki](https://github.com/wkh237/react-native-fetch-blob/wiki/Fetch-API#fetchprogresseventlistenerpromisernfetchblobresponse) for more information.
301
 
301
 
302
 ```js
302
 ```js
303
   RNFetchBlob.fetch('POST', 'http://www.example.com/upload', {
303
   RNFetchBlob.fetch('POST', 'http://www.example.com/upload', {