From 7f82a2c1c89b55aca21f6a299b8c41074e81e942 Mon Sep 17 00:00:00 2001 From: Alan Cohen Date: Mon, 20 Jul 2020 23:40:15 -0400 Subject: [PATCH] docs: fix type in lazy-load callout (#38153) PR Close #38153 --- aio/content/guide/deployment.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/deployment.md b/aio/content/guide/deployment.md index 76ef4bb935..0bdbef63e4 100644 --- a/aio/content/guide/deployment.md +++ b/aio/content/guide/deployment.md @@ -328,7 +328,7 @@ them on demand.
Don't eagerly import something from a lazy-loaded module
-If you mean to lazy-load a module, be careful not import it +If you mean to lazy-load a module, be careful not to import it in a file that's eagerly loaded when the app starts (such as the root `AppModule`). If you do that, the module will be loaded immediately.