Skip to content

Commit 6de14f4

Browse files
committed
Merge pull request #1220 from amZotti/patch-1
Fix grammatical errors in combineReducers.md
2 parents b7b456b + c30d75f commit 6de14f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/api/combineReducers.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ As your app grows more complex, you’ll want to split your [reducing function](
44

55
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).
66

7-
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`**.
7+
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`**.
88

9-
Consequently, the state object will look like this :
9+
Consequently, the state object will look like this:
1010

1111
```
1212
{

0 commit comments

Comments
 (0)