From d66cf31ffcd587bcd89cd9d6d5c34ddb04fdb47c Mon Sep 17 00:00:00 2001 From: Alan Agius Date: Mon, 30 Dec 2019 13:34:46 +0100 Subject: [PATCH] docs: add missing `t` typo and remove redundan `-` (#34599) PR Close #34599 --- 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 c9dec96983..3c61733b85 100644 --- a/aio/content/guide/lazy-loading-ngmodules.md +++ b/aio/content/guide/lazy-loading-ngmodules.md @@ -134,7 +134,7 @@ The `customers.module.ts` file imports the `customers-routing.module.ts` and `cu The `app-routing.module.ts` then imports the feature module, `customers.module.ts` using JavaScript's dynamic import. -The feature-specific route definition file—`customers-routing.module.ts`—imports its own feature component defined in the `customers.componen.ts` file, along with the other JavaScript import statements. It then maps the empty path to the `CustomersComponent`. +The feature-specific route definition file `customers-routing.module.ts` imports its own feature component defined in the `customers.component.ts` file, along with the other JavaScript import statements. It then maps the empty path to the `CustomersComponent`.