Skip to content

Commit

Permalink
Merge pull request reduxjs#1220 from amZotti/patch-1
Browse files Browse the repository at this point in the history
Fix grammatical errors in combineReducers.md
  • Loading branch information
ellbee committed Jan 10, 2016
2 parents b7b456b + c30d75f commit 6de14f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/api/combineReducers.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ As your app grows more complex, you’ll want to split your [reducing function](

The `combineReducers` helper function turns an object whose values are different reducing functions into a single reducing function you can pass to [`createStore`](createStore.md).

The resulting reducer calls every child reducer, and gather their results into a single state object. **The shape of the state object matches the keys of the passed `reducers`**.
The resulting reducer calls every child reducer, and gathers their results into a single state object. **The shape of the state object matches the keys of the passed `reducers`**.

Consequently, the state object will look like this :
Consequently, the state object will look like this:

```
{
Expand Down

0 comments on commit 6de14f4

Please sign in to comment.