From 5e3807615d2b69ec49e925d6d17049e5a142b5d6 Mon Sep 17 00:00:00 2001 From: Ward Bell Date: Mon, 12 Dec 2016 22:30:59 -0800 Subject: [PATCH] docs(router): fix typo originally identified by PR #2945 (#2962) --- public/docs/ts/latest/guide/router.jade | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/public/docs/ts/latest/guide/router.jade b/public/docs/ts/latest/guide/router.jade index 3750f42ae7..c93af23469 100644 --- a/public/docs/ts/latest/guide/router.jade +++ b/public/docs/ts/latest/guide/router.jade @@ -94,14 +94,13 @@ include ../../../_includes/_see-addr-bar We cover other options in the [details below](#browser-url-styles). :marked ### Configuration - The application will have one *`router`*. When the browser's URL changes, the router looks for a corresponding **`Route`** + The application will have one, singleton instance of the *`Router`* service. + When the browser's URL changes, that router looks for a corresponding **`Route`** from which it can determine the component to display. A router has no routes until we configure it. - We bootstrap our application with an array of routes that we'll provide to our **`RouterModule.forRoot`** function. - - In the following example, we configure our application with four route definitions. The configured `RouterModule` is - add to the `AppModule`'s `imports` array. + In the following example, we create four route definitions, configure the router via the **`RouterModule.forRoot`** method, + and add the result to the `AppModule`'s `imports` array. +makeExcerpt('app/app.module.0.ts (excerpt)', 'route-config')