Merge pull request #33 from anupcowkur/develop

Fix typo : Change "us" to "use"
This commit is contained in:
Mike Nakhimovich 2017-01-08 13:16:25 -05:00 committed by GitHub
commit fb59875569

View file

@ -88,7 +88,7 @@ Fresh data call will look like: `store.fetch()`
![Simple Store Flow](https://github.com/nytm/Store/blob/master/Images/store-2.jpg)
Overnight background updates within our app us `fetch` to make sure that calls to `store.get()` will not have to hit network during normal usage. Another good use case for `fetch` is pull to refresh.
Overnight background updates within our app use `fetch` to make sure that calls to `store.get()` will not have to hit network during normal usage. Another good use case for `fetch` is pull to refresh.
Calls to both `fetch()` and `get()` emit one value and then call `onCompleted()` or throw an error