From 38b22eee620cb35445d4b908178b9465ac363f47 Mon Sep 17 00:00:00 2001 From: Shai Reznik Date: Tue, 13 Dec 2016 07:56:48 +0200 Subject: [PATCH] docs(router): fix typo (#2959) --- 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 5df2776725..7b6842ba70 100644 --- a/public/docs/ts/latest/guide/router.jade +++ b/public/docs/ts/latest/guide/router.jade @@ -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.