Skip to content

Commit 0c8fa43

Browse files
committed
fix docs links
1 parent 9f9dcc0 commit 0c8fa43

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

docs/ChangeLog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Change Log
22

33
This project adheres to [Semantic Versioning](http://semver.org/).
4-
Every release, along with the migration instructions, is documented on the Github [Releases](https://github.com/acdlite/redux-actions/releases) page.
4+
Every release, along with the migration instructions, is documented on the Github [Releases](https://github.com/redux-utilities/redux-actions/releases) page.

docs/ExternalResources.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# External Resources
22

3-
Use redux-actions in combination with [FSA](https://github.com/acdlite/flux-standard-action)-compliant libraries.
3+
Use redux-actions in combination with [FSA](https://github.com/redux-utilities/flux-standard-action)-compliant libraries.
44

5-
* [redux-promise](https://github.com/acdlite/redux-promise) - Promise middleware
5+
* [redux-promise](https://github.com/redux-utilities/redux-promise) - Promise middleware
66
* [redux-rx](https://github.com/acdlite/redux-rx) - Includes observable middleware.

docs/advanced/UsageWithMiddleware.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
redux-actions is handy all by itself, however, its real power comes when you combine it with middleware.
44

5-
The identity form of `createAction` is a great way to create a single action creator that handles multiple payload types. For example, using [redux-promise](https://github.com/acdlite/redux-promise) and [redux-rx](https://github.com/acdlite/redux-rx):
5+
The identity form of `createAction` is a great way to create a single action creator that handles multiple payload types. For example, using [redux-promise](https://github.com/redux-utilities/redux-promise) and [redux-rx](https://github.com/acdlite/redux-rx):
66

77
```js
88
const addTodo = createAction('ADD_TODO');

docs/api/handleAction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ import { handleActions } from 'redux-actions';
8080

8181
The second parameter `defaultState` is required, and is used when `undefined` is passed to the reducer.
8282

83-
(Internally, `handleActions()` works by applying multiple reducers in sequence using [reduce-reducers](https://github.com/acdlite/reduce-reducers).)
83+
(Internally, `handleActions()` works by applying multiple reducers in sequence using [reduce-reducers](https://github.com/redux-utilities/reduce-reducers).)
8484

8585
###### EXAMPLE
8686

docs/introduction/Motivation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Motivation
22

3-
Redux has made data store mutations predictable, but it has also made them verbose. This tool was made with that in mind. Abundance of boilerplate can be painful to write and read. Keeping track of action string constants in your action creators and reducers can be overwhelming for beginners. `redux-actions` is the utility belt for [FSA](https://github.com/acdlite/flux-standard-action)-compliant actions in Redux. With helpers for both handling and creating actions it makes working with an FSA in Redux easier for everyone.
3+
Redux has made data store mutations predictable, but it has also made them verbose. This tool was made with that in mind. Abundance of boilerplate can be painful to write and read. Keeping track of action string constants in your action creators and reducers can be overwhelming for beginners. `redux-actions` is the utility belt for [FSA](https://github.com/redux-utilities/flux-standard-action)-compliant actions in Redux. With helpers for both handling and creating actions it makes working with an FSA in Redux easier for everyone.

0 commit comments

Comments
 (0)