Skip to content

Commit

Permalink
Merge pull request reduxjs#523 from nadavspi/patch-1
Browse files Browse the repository at this point in the history
Add missing semicolon to doc
  • Loading branch information
gaearon committed Aug 15, 2015
2 parents 84d6fda + b4072ba commit c459ff9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/basics/Actions.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ The `dispatch()` function can be accessed directly from the store as [`store.dis

export const ADD_TODO = 'ADD_TODO';
export const COMPLETE_TODO = 'COMPLETE_TODO';
export const SET_VISIBILITY_FILTER = 'SET_VISIBILITY_FILTER'
export const SET_VISIBILITY_FILTER = 'SET_VISIBILITY_FILTER';

/*
* other constants
Expand Down

0 comments on commit c459ff9

Please sign in to comment.