Skip to content

Commit 241a488

Browse files
committed
Merge pull request #58 from dariocravero/patch-1
Update README.md
2 parents 9286731 + f22dc4e commit 241a488

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
@@ -31,7 +31,7 @@ npm install
3131
npm start
3232
```
3333

34-
## What's it look like?
34+
## What does it look like?
3535

3636
### Actions
3737

@@ -196,7 +196,7 @@ Decorate your top-level component with `@provider(dispatcher)` (or `<Provider di
196196

197197
Redux dispatcher accepts a single Store as an argument. Usually Flux apps have many Stores, so Redux provides a `composeStore` method that turns an object with Store functions as values (such as what you'd get from `import * as stores`) into a Store that [composes](https://gist.github.com/gaearon/d77ca812015c0356654f) them.
198198

199-
Think `composeStores` is a “higher-order” Store because it creates a Store from several Stores. (You don't have to use it! You can just pass your own top-level Store function if that's what you prefer.)
199+
Think of `composeStores` as a “higher-order” Store because it creates a Store from several Stores. (You don't have to use it! You can just pass your own top-level Store function if that's what you prefer.)
200200

201201
```js
202202
import React from 'react';
@@ -234,7 +234,7 @@ export default class App {
234234

235235
### Can I use this in production?
236236

237-
I wouldn't. Many use cases are not be considered yet. If you find some use cases this lib can't handle yet, please file an issue.
237+
I wouldn't. Many use cases haven't been considered yet. If you find some use cases this lib can't handle yet, please file an issue.
238238

239239
### But there are switch statements!
240240

@@ -264,9 +264,9 @@ Redux has no opinion on how you do this in your project.
264264

265265
### What about `waitFor`?
266266

267-
I wrote a lot of vanilla Flux code, and my only use case for it was avoiding emitting a change before a related Store consumes the action. In Redux this doesn't matter because the change is only emitted after *all* Stores have consumed the action.
267+
I wrote a lot of vanilla Flux code and my only use case for it was to avoid emitting a change before a related Store consumes the action. This doesn't matter in Redux because the change is only emitted after *all* Stores have consumed the action.
268268

269-
If several of your Stores want to read data from each other and depend on each other, it's a sign they should've been a single Store instead. [See this discussion on how `waitFor` can be replaced by the composition of stateless Stores.](https://gist.github.com/gaearon/d77ca812015c0356654f)
269+
If several of your Stores want to read data from each other and depend on each other, it's a sign that they should've been a single Store instead. [See this discussion on how `waitFor` can be replaced by the composition of stateless Stores.](https://gist.github.com/gaearon/d77ca812015c0356654f)
270270

271271
### My views aren't updating!
272272

0 commit comments

Comments
 (0)