Skip to content

Commit c589d09

Browse files
committed
Merge pull request reduxjs#321 from moroshko/patch-1
Add missing paren
2 parents 70fda76 + 5c2ce3f commit c589d09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/Reference/API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ function todos(state = [], action) {
6565
}
6666

6767
let store = createStore(todos, ['Use Redux']);
68-
store.dispatch({ type: 'ADD_TODO', text: 'Read the docs');
68+
store.dispatch({ type: 'ADD_TODO', text: 'Read the docs' });
6969

7070
console.log(store.getState());
7171
// ['Use Redux', 'Read the docs']

0 commit comments

Comments
 (0)