From d80dd1e5420fabdbfceda9fe0a55715805817c31 Mon Sep 17 00:00:00 2001 From: Jason Chaney Date: Sun, 29 Nov 2015 15:28:37 -0800 Subject: [PATCH] Corrects capitalization --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 83de704..31a4b68 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ class CounterController { /* ngRedux will merge the requested state's slice and actions onto this, you don't need to redefine them in your controller */ - let unsubscribe = $ngRedux.connect(this.mapStateTothis, CounterActions)(this); + let unsubscribe = $ngRedux.connect(this.mapStateToThis, CounterActions)(this); $scope.$on('$destroy', unsubscribe); }