Skip to content

Commit e7dea3b

Browse files
committed
Grammar fix
1 parent 641b277 commit e7dea3b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/recipes/MigratingToRedux.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Your process will look like this:
1717

1818
* This allows you to gradually rewrite every Flux Store in your app as a reducer, but still export `createFluxStore(reducer)` so the rest of your app is not aware that this is happening and sees the Flux stores.
1919

20-
* As you rewrite your Stores, you will find that you need to avoid certain Flux anti-patterns such as fetching API inside the Store, or triggering actions inside the Stores. Your Flux code will be easier to follow once as you port it to be based on reducers!
20+
* As you rewrite your Stores, you will find that you need to avoid certain Flux anti-patterns such as fetching API inside the Store, or triggering actions inside the Stores. Your Flux code will be easier to follow once you port it to be based on reducers!
2121

2222
* When you have ported all of your Flux Stores to be implemented on top of reducers, you can replace the Flux library with a single Redux store, and combine those reducers you already have into one using [`combineReducers(reducers)`](../api/combineReducers.md).
2323

@@ -28,4 +28,4 @@ Your process will look like this:
2828
## From Backbone
2929

3030
Sorry, you’ll need to rewrite your model layer.
31-
It’s way too different!
31+
It’s way too different!

0 commit comments

Comments
 (0)