From 01d1488f6df49a9dcf2cbf5b9d094d021a841f43 Mon Sep 17 00:00:00 2001 From: coolguy001tv Date: Mon, 10 Oct 2016 16:06:58 +0800 Subject: [PATCH] typo error redex->redux --- 04_get-state.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/04_get-state.js b/04_get-state.js index 47cd236..8b6eb11 100644 --- a/04_get-state.js +++ b/04_get-state.js @@ -97,7 +97,7 @@ console.log('store_3 state after initialization:', store_3.getState()) // - 可以考虑: Immutable.js (https://facebook.github.io/immutable-js/) // - 可以考虑: Object.assign (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign) // - 可以考虑: 手工合并 -// - 又或者考虑用其它任何能满足需要且适合 state 结构的方法,Redex 对此是全无预设的方式的(要记得 Redux 只是个状态的容器)。 +// - 又或者考虑用其它任何能满足需要且适合 state 结构的方法,Redux 对此是全无预设的方式的(要记得 Redux 只是个状态的容器)。 // 现在开始,我们要在 reducer 里处理 action 了,我们将会有多个 reducer 并会组合它们。