From 7c392160835da85dfb500b0395ae7696a49c4a30 Mon Sep 17 00:00:00 2001 From: Kyle Liu Date: Thu, 17 May 2018 13:29:50 -0700 Subject: [PATCH] docs(aio): fix typo for @NgModuledecorator to @NgModule decorator (#24201) closes #23974 PR Close #24201 --- aio/content/tutorial/toh-pt1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/tutorial/toh-pt1.md b/aio/content/tutorial/toh-pt1.md index 0be72e9311..b581fc2fea 100644 --- a/aio/content/tutorial/toh-pt1.md +++ b/aio/content/tutorial/toh-pt1.md @@ -175,7 +175,7 @@ This information is called _metadata_ Some of the metadata is in the `@Component` decorators that you added to your component classes. Other critical metadata is in [`@NgModule`](guide/ngmodules) decorators. -The most important `@NgModule`decorator annotates the top-level **AppModule** class. +The most important `@NgModule` decorator annotates the top-level **AppModule** class. The Angular CLI generated an `AppModule` class in `src/app/app.module.ts` when it created the project. This is where you _opt-in_ to the `FormsModule`.