Skip to content

Commit

Permalink
github org to user transfer, version bump, FSA typo in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
adrienjt committed Jun 28, 2017
1 parent 4060285 commit d578fa9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ const store = createStore(rootReducer);
```

That's all for the store! We've relied heavily on the reducer makers' default options, which presume that:
1. actions adhere to the [Flux Action Standard](https://github.com/acdlite/flux-standard-action) (actions are plain Javascript object with a `type` and `payload` properties),
1. actions adhere to the [Flux Standard Action](https://github.com/acdlite/flux-standard-action) (actions are plain Javascript object with a `type` and `payload` properties),
1. and Todos are identified by an `id` property, used as a key in the `todos` map (and the `completetedTodos` set).

Now let's subscribe to the store and dispatch a few actions:
Expand Down Expand Up @@ -284,7 +284,7 @@ The default `() => true` is equivalent to no additional condition.
}
```

A list can be used as a queue or stack. `enqueueActionTypes` and `pushActionTypes` add items to the list, using the `itemGetter`. The default `itemGetter` adds the [Flux Action Standard](https://github.com/acdlite/flux-standard-action) `payload` to the list.
A list can be used as a queue or stack. `enqueueActionTypes` and `pushActionTypes` add items to the list, using the `itemGetter`. The default `itemGetter` adds the [Flux Standard Action](https://github.com/acdlite/flux-standard-action) `payload` to the list.

### Map

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "redux-data-structures",
"version": "0.1.3",
"version": "0.1.4",
"description": "Creator functions for common reducers",
"main": "lib/index.js",
"module": "src/index.js",
Expand All @@ -10,7 +10,7 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/PacificCodology/redux-data-structures.git"
"url": "git+https://github.com/adrienjt/redux-data-structures.git"
},
"keywords": [
"redux",
Expand All @@ -32,9 +32,9 @@
"author": "Adrien Trouillaud",
"license": "MIT",
"bugs": {
"url": "https://github.com/PacificCodology/redux-data-structures/issues"
"url": "https://github.com/adrienjt/redux-data-structures/issues"
},
"homepage": "https://github.com/PacificCodology/redux-data-structures#readme",
"homepage": "https://github.com/adrienjt/redux-data-structures#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
Expand Down

0 comments on commit d578fa9

Please sign in to comment.