Skip to content

Commit 6692c1b

Browse files
committed
Merge pull request reduxjs#841 from npverni/link-up-dataflow-doc
Add links to DataFlow.md
2 parents cdde305 + f02a1cf commit 6692c1b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/basics/DataFlow.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The data lifecycle in any Redux app follows these 4 steps:
1010

1111
1. **You call** [`store.dispatch(action)`](../api/Store.md#dispatch).
1212

13-
An action is a plain object describing *what happened*. For example:
13+
An [action](Actions.md) is a plain object describing *what happened*. For example:
1414

1515
```js
1616
{ type: 'LIKE_ARTICLE', articleId: 42 };
@@ -24,7 +24,7 @@ The data lifecycle in any Redux app follows these 4 steps:
2424

2525
2. **The Redux store calls the reducer function you gave it.**
2626

27-
The store will pass two arguments to the reducer, the current state tree and the action. For example, in the todo app, the root reducer might receive something like this:
27+
The [store](Store.md) will pass two arguments to the [reducer](Reducers.md): the current state tree and the action. For example, in the todo app, the root reducer might receive something like this:
2828

2929
```js
3030
// The current application state (list of todos and chosen filter)

0 commit comments

Comments
 (0)