docs(ngmodule): Fix typo

closes #2103
Another two `@NgModel` typos.
This commit is contained in:
Trotyl Yu 2016-08-13 14:17:50 +08:00 committed by Ward Bell
parent f13b4cc04f
commit 917bf6f603

View File

@ -1392,7 +1392,7 @@ a#q-root-component-or-module
### Should I add providers to the root _AppModule_ or the root _AppComponent_? ### Should I add providers to the root _AppModule_ or the root _AppComponent_?
Most apps launch with an initial set of service providers. Most apps launch with an initial set of service providers.
Should we register those providers on the root `AppModule` (`@NgModel.providers`) or Should we register those providers on the root `AppModule` (`@NgModule.providers`) or
the root `AppComponent` (`@Component.providers`)? the root `AppComponent` (`@Component.providers`)?
**_List such providers in the root_ `AppModule` _unless you have a compelling reason to do otherwise_**. **_List such providers in the root_ `AppModule` _unless you have a compelling reason to do otherwise_**.
@ -1490,7 +1490,7 @@ a#q-entry-component-defined
We must tell it about them ... by adding them to the `entryComponents` list. We must tell it about them ... by adding them to the `entryComponents` list.
Angular automatically adds two kinds of components to the module's `entryComponents`: Angular automatically adds two kinds of components to the module's `entryComponents`:
1. the component in the `@NgModel.bootstrap` list 1. the component in the `@NgModule.bootstrap` list
1. components referenced in router configuration 1. components referenced in router configuration
We don't have to mention these components explicitly although it does not harm to do so. We don't have to mention these components explicitly although it does not harm to do so.