From c6cf4dc310a3bbd1c53833254bd3cd3fd867c108 Mon Sep 17 00:00:00 2001 From: Sarun Intaralawan Date: Sun, 18 Sep 2016 04:56:55 +0700 Subject: [PATCH] docs(router): add missing backticks (#2366) --- public/docs/ts/latest/guide/router.jade | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/public/docs/ts/latest/guide/router.jade b/public/docs/ts/latest/guide/router.jade index 0af9b5d1d3..a35b29bde1 100644 --- a/public/docs/ts/latest/guide/router.jade +++ b/public/docs/ts/latest/guide/router.jade @@ -1365,13 +1365,13 @@ a#child-routing-component They *extend* the path of the parent route. With each step down the route tree, we add a slash followed by the route path (unless the route path is _empty_). - For example, the parent path to the `CrisisCenterComponent` is `/crisis-center - The router appends these child paths to the parent path to the `CrisisCenterComponent` (`/crisis-center). + For example, the parent path to the `CrisisCenterComponent` is `/crisis-center` + The router appends these child paths to the parent path to the `CrisisCenterComponent` (`/crisis-center`). - * to navigate to the `CrisisCenterHomeComponent, the full URL is `/crisis-center` (/crisis-center` + `''` + `''`). + * to navigate to the `CrisisCenterHomeComponent`, the full URL is `/crisis-center` (`/crisis-center` + `''` + `''`). * to navigate to the `CrisisDetailComponent` for a crisis with `id=2`, the full URL is - `/crisis-center/2` (/crisis-center` + `''` + `'/2'`). + `/crisis-center/2` (`/crisis-center` + `''` + `'/2'`). The absolute URL for the latter example, including the origin, is code-example.