From eaa49bdc04c4bdee7b1068b0314b2910465701bf Mon Sep 17 00:00:00 2001 From: musou1500 Date: Wed, 3 Apr 2019 08:44:59 +0900 Subject: [PATCH] docs: fix typo in getting-started/routing (#29676) PR Close #29676 --- aio/content/getting-started/routing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/getting-started/routing.md b/aio/content/getting-started/routing.md index f6014ab17f..239f787d84 100644 --- a/aio/content/getting-started/routing.md +++ b/aio/content/getting-started/routing.md @@ -48,7 +48,7 @@ The app is already set up to use the Angular router and to use routing to naviga To do: I see a comment line with ellipses between the closing of h3 and div. It's an interesting way to show that we've clipped out some code. Should we use this elsewhere? --> - The RouterLink directive gives the router control over the anchor element. In this case, the route (URL) contains one fixed segment (`/products`) and the final segment is variable, inserting the id property of the current product. For example, the URL for a product with an `id` of 1 will be similar to `https://getting-started-myfork.stackblitz.io.products/1`. + The RouterLink directive gives the router control over the anchor element. In this case, the route (URL) contains one fixed segment (`/products`) and the final segment is variable, inserting the id property of the current product. For example, the URL for a product with an `id` of 1 will be similar to `https://getting-started-myfork.stackblitz.io/products/1`. 1. Test the router by clicking a product name. The app displays the product details component, which currently always says "product-details works!" (We'll fix this in the next section.)