From ca544dd07acfdf399f2183383e973749b94ba121 Mon Sep 17 00:00:00 2001 From: Juan Herrera Date: Fri, 11 Aug 2017 08:52:40 -0500 Subject: [PATCH] chore(docs): Fix selection of state using string selector (#261) --- docs/store/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/store/README.md b/docs/store/README.md index b3bd1ad5f0..3f90a4d38e 100644 --- a/docs/store/README.md +++ b/docs/store/README.md @@ -96,7 +96,7 @@ export class MyAppComponent { counter: Observable; constructor(private store: Store) { - this.counter = store.select('counter'); + this.counter = store.select('counter'); } increment(){