From 47b51dad684f7df49d3991affbe3d9144e7e6d05 Mon Sep 17 00:00:00 2001 From: Timothy Curchod Date: Wed, 19 Oct 2016 00:05:56 +1100 Subject: [PATCH] docs(toh-pt6,guide): fix a grammatical error (#2594) --- public/docs/ts/latest/guide/router.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/ts/latest/guide/router.jade b/public/docs/ts/latest/guide/router.jade index 2470f006d7..6d471b4702 100644 --- a/public/docs/ts/latest/guide/router.jade +++ b/public/docs/ts/latest/guide/router.jade @@ -1182,7 +1182,7 @@ h3#merge-hero-routes Import hero module into AppModule We imported the `HeroesModule` and added it to our `AppModule`'s `imports`. We removed the `HeroListComponent` from the `AppModule`'s `declarations` because its being provided by the `HeroesModule` - now. This is important because their can be only **one** owner for a declared component. In our case, the `Heroes` module is + now. This is important because there can be only **one** owner for a declared component. In our case, the `Heroes` module is the owner of the `Heroes` components and is making them available to the `AppModule`. .l-sub-section