From 6d8c847e7b7356f269ce1444657974dd6e14885c Mon Sep 17 00:00:00 2001 From: Patrick McDonald Date: Fri, 18 May 2018 12:49:09 -0400 Subject: [PATCH] docs: fix typo (#23998) "Made" doesn't make sense (redoing and closing #23940) PR Close #23998 --- aio/content/guide/router.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/router.md b/aio/content/guide/router.md index f50fc0f2af..d32f8ba9c5 100644 --- a/aio/content/guide/router.md +++ b/aio/content/guide/router.md @@ -3656,7 +3656,7 @@ Lazy loading has multiple benefits. * You can speed up load time for users that only visit certain areas of the application. * You can continue expanding lazy loaded feature areas without increasing the size of the initial load bundle. -You're already made part way there. +You're already part of the way there. By organizing the application into modules—`AppModule`, `HeroesModule`, `AdminModule` and `CrisisCenterModule`—you have natural candidates for lazy loading.