From ead6987d0074848d08282002093cd5def0221075 Mon Sep 17 00:00:00 2001 From: Aristeidis Bampakos Date: Thu, 7 Apr 2016 11:15:48 +0300 Subject: [PATCH] docs(router): Fixed typos closes #1056 Small typo fixes. --- 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 594d2d467a..ee4361aff8 100644 --- a/public/docs/ts/latest/guide/router.jade +++ b/public/docs/ts/latest/guide/router.jade @@ -104,7 +104,7 @@ include ../_util-fns ### Router Outlet Now we know how the router gets its configuration. When the browser URL for this application becomes `/heroes`, - the router matches that URL to the `RouteDefintion` named *Heroes* and displays the `HeroListComponent` + the router matches that URL to the `RouteDefinition` named *Heroes* and displays the `HeroListComponent` in a **`RouterOutlet`** that we've placed in the host view's HTML. code-example(format="", language="html"). <!-- Routed views go here --> @@ -318,7 +318,7 @@ figure.image-display .l-sub-section :marked #### Live example note - We have to be get tricky when we run the live example because the host service sets + We have to get tricky when we run the live example because the host service sets the application base address dynamically. That's why we replace the `` with a script that writes a `` tag on the fly to match. code-example(format="")