ks-fwork 1.0.5 → 1.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/app.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ks-fwork",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "Demo Frontend Framework",
5
5
  "license": "ISC",
6
6
  "author": "",
package/src/app.js CHANGED
@@ -9,7 +9,7 @@ export function createApp({state, view, reducers = {} }) {
9
9
  const dispatcher = new Dispatcher();
10
10
  const unsubscribers = [dispatcher.afterEveryCommand(renderApp)];
11
11
 
12
- // Wire each reducer to its action: when the action fires, replace state with the reducer's result.
12
+ // Wire each reducer to its action: when the action is emitted, replace state with the reducer's result.
13
13
  for (const actionName in reducers) {
14
14
  const reducer = reducers[actionName];
15
15