Skip to content

Commit 9eb6534

Browse files
committed
Fix grammar error in Reducers.md
1 parent f8439c6 commit 9eb6534

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/basics/Reducers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ It’s called a reducer because it’s the type of function you would pass to [`
4545

4646
* Mutate its arguments;
4747
* Perform side effects like API calls and routing transitions;
48-
* Calling non-pure functions, e.g. `Date.now()` or `Math.random()`.
48+
* Call non-pure functions, e.g. `Date.now()` or `Math.random()`.
4949

5050
We’ll explore how to perform side effects in the [advanced walkthrough](../advanced/README.md). For now, just remember that the reducer must be pure. **Given the same arguments, it should calculate the next state and return it. No surprises. No side effects. No API calls. No mutations. Just a calculation.**
5151

0 commit comments

Comments
 (0)