Skip to content

Commit 24ab45f

Browse files
committed
Clarify the wording
1 parent 95496d0 commit 24ab45f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

docs/basics/Actions.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ function addTodo(text) {
6666

6767
This makes them portable and easy to test.
6868

69-
In Flux [traditional Flux](http://facebook.github.io/flux) action creators often trigger a dispatch when invoked, like so:
69+
In [traditional Flux](http://facebook.github.io/flux) action creators often trigger a dispatch when invoked, like so:
7070

7171
```js
7272
function addTodoWithDispatch(text) {
@@ -78,7 +78,8 @@ function addTodoWithDispatch(text) {
7878
}
7979
```
8080

81-
In Redux to actually initiate a dispatch, pass the result to the `dispatch()` function:
81+
In Redux this is *not* the case.
82+
Instead, to actually initiate a dispatch, pass the result to the `dispatch()` function:
8283

8384
```js
8485
dispatch(addTodo(text))

0 commit comments

Comments
 (0)