Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ For any store created using redux-injector, simply use ```injectReducer``` to ad
```javascript
import { injectReducer } from 'redux-injector';

injectReducer('date.form', formReducerFunction);
injectReducer('data.form', formReducerFunction);
```

The injector uses lodash.set so any paths that are supported by it can be used and any missing objects will be created.
Expand All @@ -78,4 +78,4 @@ let store = createInjectStore(
initialState,
{ combineReducers }
);
```
```