From cae2a893f2eeab31692670316d10a80ebacc4b9c Mon Sep 17 00:00:00 2001 From: Grant Fleming Date: Fri, 24 Apr 2020 09:26:40 +0100 Subject: [PATCH] docs: fix typo (#36786) Correct typo in the router docs, changing "as your app growns" to "as your app grows". Previously the wrong spelling was used and this commit rectifies this. PR Close #36786 --- 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 f2795f4d1e..7ec04284d1 100644 --- a/aio/content/guide/router.md +++ b/aio/content/guide/router.md @@ -1105,7 +1105,7 @@ The application continues to work just the same, and you can use `AppRoutingModu The routing module, often called the `AppRoutingModule`, replaces the routing configuration in the root or feature module. -The routing module is helpful as your app growns and when the configuration includes specialized guard and resolver services. +The routing module is helpful as your app grows and when the configuration includes specialized guard and resolver services. Some developers skip the routing module when the configuration is minimal and merge the routing configuration directly into the companion module (for example, `AppModule`).