Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
gracefulife committed Jan 11, 2018
1 parent 7f76a01 commit f43c6c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -55,7 +55,7 @@ Store<String> store = new Store<>("Hello");
//when the store's state changes, update your UI
states(store).subscribe(System.out::println);
//start dispatching actions to your store...
store.dispatch( oldState -> oldState + " Grox");
store.dispatch(oldState -> oldState + " Grox");
```

A command example
Expand Down

0 comments on commit f43c6c6

Please sign in to comment.