From 9e4c0bd81575d8ebc438b85fd9a37affc74170ca Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Mon, 1 Apr 2019 17:32:21 +0200 Subject: [PATCH] docs: fix typos in getting-started (#29665) PR #27684 introduced a new getting-started guide and a few typos slipped through the review. PR Close #29665 --- aio/content/getting-started/data.md | 4 ++-- aio/content/getting-started/routing.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/aio/content/getting-started/data.md b/aio/content/getting-started/data.md index 56a2260967..13c773fff1 100644 --- a/aio/content/getting-started/data.md +++ b/aio/content/getting-started/data.md @@ -118,7 +118,7 @@ When the "Buy" button is clicked, you'll use the cart service to add the current ## Create the cart page -At this point, user can put items in the cart by clicking "Buy", but they can't yet see their cart. +At this point, users can put items in the cart by clicking "Buy", but they can't yet see their cart. We'll create the cart page in two steps: @@ -127,7 +127,7 @@ We'll create the cart page in two steps: ### Set up the component - To create the cart page, you being by following the same steps you did to create the product details component and to set up routing for the new component. + To create the cart page, you begin by following the same steps you did to create the product details component and to set up routing for the new component. 1. Generate a cart component, named `cart`. diff --git a/aio/content/getting-started/routing.md b/aio/content/getting-started/routing.md index 6cf286de8e..f6014ab17f 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 give 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.)