docs(toh-pt6,guide): fix a grammatical error (#2594)

This commit is contained in:
Timothy Curchod 2016-10-19 00:05:56 +11:00 committed by Jesús Rodríguez
parent 19a9e355a1
commit 47b51dad68
1 changed files with 1 additions and 1 deletions

View File

@ -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