From 410f21c75c28aa88eb49fd522eab5d56e198e026 Mon Sep 17 00:00:00 2001 From: Thanesh Rajandran Date: Thu, 20 Jul 2017 12:07:30 -0400 Subject: [PATCH] docs(aio): fix typo in NgModule FAQs (#18211) Fix #18133. Fix typo 'added' to 'add' in the 'Why does lazy loading create a child injector' section. --- 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 b77081c591..81f5386cbb 100644 --- a/aio/content/guide/ngmodule-faq.md +++ b/aio/content/guide/ngmodule-faq.md @@ -615,7 +615,7 @@ Once the application begins, the app root injector is closed to new providers. Time passes and application logic triggers lazy loading of a module. Angular must add the lazy-loaded module's providers to an injector somewhere. -It can't added them to the app root injector because that injector is closed to new providers. +It can't add them to the app root injector because that injector is closed to new providers. So Angular creates a new child injector for the lazy-loaded module context.