docs(router): fix typo (#2959)

This commit is contained in:
Shai Reznik 2016-12-13 07:56:48 +02:00 committed by Ward Bell
parent 1f97bcbd81
commit 38b22eee62
1 changed files with 1 additions and 1 deletions

View File

@ -2086,7 +2086,7 @@ include ../../../_includes/_see-addr-bar
so we'll use the `loadChildren` property in our route config where previously we used the `children` property to include our child routes.
We'll also change our `admin` **path** in our `admin-routing.module.ts` to an empty path. The `Router` supports
*empty path* routes, which we can use for grouping routes together without adding anything additional paths to the URL. Our
*empty path* routes, which we can use for grouping routes together without adding any additional paths to the URL. Our
users will still visit `/admin` and our `AdminComponent` still serves as our *Routing Component* which contains
our child routes.