Skip to content
This repository was archived by the owner on Mar 16, 2019. It is now read-only.

Commit 3987067

Browse files
Oliverwkh237
authored andcommitted
Update some of the grammar in README.md (#307)
1 parent ffacc87 commit 3987067

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
[![release](https://img.shields.io/github/release/wkh237/react-native-fetch-blob.svg?style=flat-square)](https://github.com/wkh237/react-native-fetch-blob/releases) [![npm](https://img.shields.io/npm/v/react-native-fetch-blob.svg?style=flat-square)](https://www.npmjs.com/package/react-native-fetch-blob) ![](https://img.shields.io/badge/PR-Welcome-brightgreen.svg?style=flat-square) [![](https://img.shields.io/badge/Wiki-Public-brightgreen.svg?style=flat-square)](https://github.com/wkh237/react-native-fetch-blob/wiki) [![npm](https://img.shields.io/npm/l/react-native-fetch-blob.svg?maxAge=2592000&style=flat-square)]()
33

44

5-
A project committed to making file access and data transfer easier, efficient for React Native developers.
6-
> For Firebase Storage solution, please upgrade to latest version for best compatibility.
5+
A project committed to making file access and data transfer easier and more efficient for React Native developers.
6+
> For Firebase Storage solution, please upgrade to the latest version for the best compatibility.
77
88
## Features
99
- Transfer data directly from/to storage without BASE64 bridging
@@ -39,8 +39,8 @@ A project committed to making file access and data transfer easier, efficient fo
3939

4040
## About
4141

42-
This project was initially for solving the issue [facebook/react-native#854](https://github.com/facebook/react-native/issues/854) because React Native lack of `Blob` implementation and it's problematic when transferring binary data. Now the project is committed to making file access and transfer easier, efficient for React Native developers.
43-
We've implemented highly customizable filesystem and network module which plays well together. For example, upload and download data directly from/to storage which is much more efficient in some cases(especially for large ones). The file system supports file stream, so you don't have to worry about OOM problem when accessing large files.
42+
This project was initially created to solve the issue [facebook/react-native#854](https://github.com/facebook/react-native/issues/854) because React Native lacks any `Blob` implementation and is problematic when transferring binary data. The project is committed to making file access and transfer easier and more efficient for React Native developers.
43+
We've implemented highly customizable filesystem and network module which plays well together. For example, developers can upload and download data directly from/to storage, which is more efficient, especially for large files. The file system supports file stream, so you don't have to worry about OOM problem when accessing large files.
4444

4545
In `0.8.0` we introduced experimental Web API polyfills that make it possible to use browser-based libraries in React Native, such as, [FireBase JS SDK](https://github.com/wkh237/rn-firebase-storage-upload-sample)
4646

@@ -53,7 +53,7 @@ Install package from npm
5353
npm install --save react-native-fetch-blob
5454
```
5555

56-
Or if using CocoaPods, add the pod to your `Podfile`, for example:
56+
Or if using CocoaPods, add the pod to your `Podfile`
5757

5858
```
5959
pod 'react-native-fetch-blob',
@@ -68,7 +68,7 @@ npm install --save github:wkh237/react-native-fetch-blob-package#<branch_name>
6868
```
6969
**Automatically Link Native Modules**
7070

71-
For 0.29.2+ projects, simply link native packages via the following command because rnpm has been merged into react-native, you no longer need it.
71+
For 0.29.2+ projects, simply link native packages via the following command (note: rnpm has been merged into react-native)
7272

7373
```
7474
react-native link
@@ -115,7 +115,7 @@ If you're going to access external storage (say, SD card storage) for `Android 5
115115

116116
```
117117

118-
Also, if you're going to use `Android Download Manager` you have to add this to `AndroidManifetst.xml`
118+
Also, if you're going to use `Android Download Manager` you have to add this to `AndroidManifest.xml`
119119

120120
```diff
121121
<intent-filter>
@@ -152,7 +152,7 @@ var RNFetchBlob = require('react-native-fetch-blob').default
152152

153153
### Regular Request
154154

155-
After `0.8.0` react-native-fetch-blob automatically decide how to send the body by checking its type and `Content-Type` in the header. The rule is described in the following diagram
155+
After `0.8.0` react-native-fetch-blob automatically decides how to send the body by checking its type and `Content-Type` in the header. The rule is described in the following diagram
156156

157157
<img src="img/RNFB-flow (1).png" style="width : 90%" />
158158

0 commit comments

Comments
 (0)