From 1ec01d67588c1ce6826f9ea968ffcae662965c5b Mon Sep 17 00:00:00 2001 From: Shivam_Vyas Date: Fri, 14 Dec 2018 21:05:21 +0530 Subject: [PATCH] docs: change in(what should I import? answer) NgModule FAQs (#27677) I think only should be after BrowserModule , because we can import more than BrowserModule and I think we need to import other modules to AppModule in most of cases and we should import BrowserModule only in AppModule,so that thing seems okay. PR Close #27677 --- aio/content/guide/ngmodule-faq.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/ngmodule-faq.md b/aio/content/guide/ngmodule-faq.md index 1aae14d486..3d4feaf5bc 100644 --- a/aio/content/guide/ngmodule-faq.md +++ b/aio/content/guide/ngmodule-faq.md @@ -95,7 +95,7 @@ if your components have `[(ngModel)]` two-way binding expressions. Import _shared_ and _feature_ modules when this module's components incorporate their components, directives, and pipes. -Import only [BrowserModule](guide/ngmodule-faq#q-browser-vs-common-module) in the root `AppModule`. +Import [BrowserModule](guide/ngmodule-faq#q-browser-vs-common-module) only in the root `AppModule`.