From b1c2c27d365186d4231a470945a0975482df58e9 Mon Sep 17 00:00:00 2001 From: Adrian Irwin Date: Thu, 3 Nov 2016 16:57:56 -0700 Subject: [PATCH] docs(router): fixed verbiage and example of how routed views are related to the router outlet --- public/docs/ts/latest/guide/router.jade | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/docs/ts/latest/guide/router.jade b/public/docs/ts/latest/guide/router.jade index a1885b6afe..c944cfbcaf 100644 --- a/public/docs/ts/latest/guide/router.jade +++ b/public/docs/ts/latest/guide/router.jade @@ -143,10 +143,10 @@ include ../_util-fns ### Router Outlet Given this configuration, when the browser URL for this application becomes `/heroes`, the router matches that URL to the `Route` path `/heroes` and displays the `HeroListComponent` - in a **`RouterOutlet`** that we've placed in the host view's HTML. + ***after*** the **`RouterOutlet`** that we've placed in the host view's HTML. code-example(language="html"). - <!-- Routed views go here --> <router-outlet></router-outlet> + <!-- Routed views go here --> :marked ### Router Links Now we have routes configured and a place to render them, but