From 30a617e6f10234763f8b3b86238012ae8dc52400 Mon Sep 17 00:00:00 2001 From: lukasz_brainhub Date: Fri, 15 Sep 2017 17:00:07 +0200 Subject: [PATCH] Readme fixes --- docs/api.md | 2 +- docs/gettingStarted.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/api.md b/docs/api.md index 567f05f..5c220ad 100644 --- a/docs/api.md +++ b/docs/api.md @@ -78,7 +78,7 @@ tools.createActionType('myFancyName', '', 'blah'); // BLAH_MY_FANCY_NAME ``` -#### `tools.immutable(object, path, value, delimiter)` +#### `tools.immutableSet(object, path, value, delimiter)` - `import { tools } from 'reduxBreeze'` - works like lodash's _.set() but does not mutate the object (can be used to easily, immutably set value in complicated nested structure) - arguments: diff --git a/docs/gettingStarted.md b/docs/gettingStarted.md index 2bf5a22..c9face1 100644 --- a/docs/gettingStarted.md +++ b/docs/gettingStarted.md @@ -31,7 +31,7 @@ import myCustomReducers from 'myCustomReducers.js'; const store = createStore(reduxBreezeInstance.combineReducer(myCustomRedcuers)); ``` -And **that's all!** Now you can use you reducers, actions etc. like before, unleashing the power of reduxBreeze at the same time ;) +And **that's all!** Now you can use your reducers, actions etc. like before, unleashing the power of reduxBreeze at the same time ;) # Creating my first actions