Skip to content

Commit 3ade4b0

Browse files
committed
combine => combineReducers
1 parent 126ac3e commit 3ade4b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ Usually you'll have multiple reducers for different domains of data in your app.
187187
```js
188188
import { createStore, combineReducers } from 'redux';
189189
import * as reducers from '../reducers';
190-
const reducer = combine(reducers);
190+
const reducer = combineReducers(reducers);
191191
const store = createStore(reducer);
192192
```
193193

0 commit comments

Comments
 (0)