From a5a55eabe1cb76d3ec0203cc0e12c515593dc72a Mon Sep 17 00:00:00 2001 From: "SangKa.Z" Date: Thu, 30 Mar 2017 07:02:08 +0800 Subject: [PATCH] docs(ngmodule-faq): change wrong word "exports" to "imports" (#2582) The correct sentence is: "Importing a module does _not_ automatically re-export the imported module's imports" --- public/docs/ts/latest/cookbook/ngmodule-faq.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/ts/latest/cookbook/ngmodule-faq.jade b/public/docs/ts/latest/cookbook/ngmodule-faq.jade index cb93852e77..29b24fb03a 100644 --- a/public/docs/ts/latest/cookbook/ngmodule-faq.jade +++ b/public/docs/ts/latest/cookbook/ngmodule-faq.jade @@ -1104,7 +1104,7 @@ table Declarations are private by default. If this module does _not_ export `HeroComponent`, no other module can see it. - Importing a module does _not_ automatically re-export the imported module's exports. + Importing a module does _not_ automatically re-export the imported module's imports. Module 'B' can't use `ngIf` just because it imported module `A` which imported `CommonModule`. Module 'B' must import `CommonModule` itself.