Skip to content

Commit b4072ba

Browse files
committed
Add missing semicolon to doc
I assume this isn't intentional, since the use of semicolons is otherwise consistent.
1 parent 84d6fda commit b4072ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/basics/Actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ The `dispatch()` function can be accessed directly from the store as [`store.dis
106106

107107
export const ADD_TODO = 'ADD_TODO';
108108
export const COMPLETE_TODO = 'COMPLETE_TODO';
109-
export const SET_VISIBILITY_FILTER = 'SET_VISIBILITY_FILTER'
109+
export const SET_VISIBILITY_FILTER = 'SET_VISIBILITY_FILTER';
110110

111111
/*
112112
* other constants

0 commit comments

Comments
 (0)