From 7d23fdbe332ee7ece08ef5a283f93d04020c9412 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Sat, 5 Aug 2017 20:54:13 -0500 Subject: [PATCH] chore(docs): Update store README text (#238) --- 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 61f7b5173d..b3bd1ad5f0 100644 --- a/docs/store/README.md +++ b/docs/store/README.md @@ -54,7 +54,7 @@ export function counterReducer(state: number = 0, action: Action) { ``` To register the state container within your application, import the reducers and use the `StoreModule.forRoot` -function in the `imports` array them in the `AppModule`. +function in the `imports` array of the `@NgModule` decorator for your `AppModule`. ```ts import { NgModule } from '@angular/core'