From 5577f6445d6578ac5382413bc03975ed0fa3025e Mon Sep 17 00:00:00 2001 From: Marco Capano Date: Wed, 17 Jul 2019 13:42:43 +0100 Subject: [PATCH] Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1d2ce41..acfb3ac 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ func moviesStateReducer(state: MoviesState, action: Action) -> MoviesState { return state } ``` -Finally, you have to add you `Store` wich will contain you current application state `AppState` as a global constant. +Finally, you have to add you `Store` which will contain you current application state `AppState` as a global constant. ```Swift let store = Store(reducer: appStateReducer,