Skip to content

Commit 5c2ce3f

Browse files
committed
Add missing paren
1 parent 3055a83 commit 5c2ce3f

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)