From 388f4056e6a5924bc5c046b98b728d40d64319ab Mon Sep 17 00:00:00 2001 From: Richard Sithole Date: Mon, 10 May 2021 09:39:32 +0200 Subject: [PATCH] docs: fix a grammatical error in lazy-loading-ngmodules guide (#42008) PR Close #42008 --- aio/content/guide/lazy-loading-ngmodules.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/lazy-loading-ngmodules.md b/aio/content/guide/lazy-loading-ngmodules.md index fb2c0ed35eed7..f85990b22f957 100644 --- a/aio/content/guide/lazy-loading-ngmodules.md +++ b/aio/content/guide/lazy-loading-ngmodules.md @@ -106,7 +106,7 @@ The import path is the relative path to the module. In Angular version 8, the string syntax for the `loadChildren` route specification [was deprecated](https://angular.io/guide/deprecations#loadchildren-string-syntax) in favor of the `import()` syntax. However, you can opt into using string-based lazy loading (`loadChildren: './path/to/module#Module'`) by including the lazy-loaded routes in your `tsconfig` file, which includes the lazy-loaded files in the compilation. -By default the CLI will generate projects which stricter file inclusions intended to be used with the `import()` syntax. +By default the CLI will generate projects with stricter file inclusions intended to be used with the `import()` syntax.