From c9983e6440cafebb24703a77d84f7695f41c1254 Mon Sep 17 00:00:00 2001 From: Santi Date: Wed, 19 Apr 2017 11:30:02 +0200 Subject: [PATCH] docs(aio): Fix reference to the right example Fix reference to the right example (it's the second route in the example the one showing the route parameter, not the first one) --- aio/content/guide/router.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/router.md b/aio/content/guide/router.md index 44b1e1e0bd..595a11d63a 100644 --- a/aio/content/guide/router.md +++ b/aio/content/guide/router.md @@ -223,7 +223,7 @@ There are _no leading slashes_ in the _path_. The router parses and builds the final URL for you, allowing you to use both relative and absolute paths when navigating between application views. -The `:id` in the first route is a token for a route parameter. In a URL such as `/hero/42`, "42" +The `:id` in the second route is a token for a route parameter. In a URL such as `/hero/42`, "42" is the value of the `id` parameter. The corresponding `HeroDetailComponent` will use that value to find and present the hero whose `id` is 42. You'll learn more about route parameters later in this guide.