From b7e42e2d32835d1e22038bcf5aae38a03c0c6faa Mon Sep 17 00:00:00 2001 From: Trotyl Yu Date: Wed, 10 Aug 2016 10:00:08 +0800 Subject: [PATCH] docs(ngmodule): Fix typo closes #2073 --- public/docs/ts/latest/guide/ngmodule.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/ts/latest/guide/ngmodule.jade b/public/docs/ts/latest/guide/ngmodule.jade index 483cba968e..594138d016 100644 --- a/public/docs/ts/latest/guide/ngmodule.jade +++ b/public/docs/ts/latest/guide/ngmodule.jade @@ -80,7 +80,7 @@ a#root_module This `AppModule` is about as minimal as it gets: +makeExample('ngmodule/ts/app/app.module.0.ts', '', 'app/app.module.ts (minimal)')(format=".") :marked - The `@NgModel` decorator defines the metadata for the module. + The `@NgModule` decorator defines the metadata for the module. We'll take an intuitive approach to understanding the metadata and fill in details as we go. This metadata imports a single helper module, `BrowserModule`, the module every browser app must import.