From d578fa965a586cb487603914c41182e8c8705f8b Mon Sep 17 00:00:00 2001 From: Adrien Trouillaud Date: Wed, 28 Jun 2017 10:03:38 -0700 Subject: [PATCH] github org to user transfer, version bump, FSA typo in readme --- README.md | 4 ++-- package.json | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 8a3baff..60edf19 100644 --- a/README.md +++ b/README.md @@ -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: @@ -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 diff --git a/package.json b/package.json index 258dac2..88a190f 100644 --- a/package.json +++ b/package.json @@ -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", @@ -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", @@ -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",