From 6ff28ac9449ebb48701e848a31ffa70b21cbe5db Mon Sep 17 00:00:00 2001 From: Gillan Martindale Date: Mon, 10 Aug 2020 16:28:39 +0100 Subject: [PATCH] docs: Remove redundant sentence from Router (#38398) PR Close #38398 --- aio/content/guide/router.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/aio/content/guide/router.md b/aio/content/guide/router.md index abf916b369..b7aea18a7b 100644 --- a/aio/content/guide/router.md +++ b/aio/content/guide/router.md @@ -2,10 +2,9 @@ In a single-page app, you change what the user sees by showing or hiding portions of the display that correspond to particular components, rather than going out to the server to get a new page. As users perform application tasks, they need to move between the different [views](guide/glossary#view "Definition of view") that you have defined. -To implement this kind of navigation within the single page of your app, you use the Angular **`Router`**. -To handle the navigation from one [view](guide/glossary#view) to the next, you use the Angular _router_. -The router enables navigation by interpreting a browser URL as an instruction to change the view. +To handle the navigation from one [view](guide/glossary#view) to the next, you use the Angular **`Router`**. +The **`Router`** enables navigation by interpreting a browser URL as an instruction to change the view. To explore a sample app featuring the router's primary features, see the .