From 696563d42af53aaac2b469ceb0a715d310b4ca42 Mon Sep 17 00:00:00 2001 From: Wes Grimes Date: Tue, 4 Feb 2020 21:55:59 -0500 Subject: [PATCH] formatting --- projects/ngrx.io/content/guide/store/selectors.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/projects/ngrx.io/content/guide/store/selectors.md b/projects/ngrx.io/content/guide/store/selectors.md index 1de6204dd2..941707985e 100644 --- a/projects/ngrx.io/content/guide/store/selectors.md +++ b/projects/ngrx.io/content/guide/store/selectors.md @@ -251,9 +251,10 @@ It is important to continue to provide a Store type generic if you are using the The follow example demonstrates the use of Store without providing a generic: + export class AppComponent { - counter = store.pipe(select(fromCounter.selectCounter)); + counter$ = this.store.pipe(select(fromCounter.selectCounter)); constructor(private store: Store) {} }