From 6425a6d54385825b2526d71ec9d57aa5767a96e6 Mon Sep 17 00:00:00 2001 From: Sam Hrncir Date: Thu, 11 Feb 2021 12:04:09 -0500 Subject: [PATCH] docs: typo fix (#40804) PR Close #40804 --- aio/content/start/start-data.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/start/start-data.md b/aio/content/start/start-data.md index 87aff5270c..76291ac01d 100644 --- a/aio/content/start/start-data.md +++ b/aio/content/start/start-data.md @@ -66,7 +66,7 @@ This section walks you through using the `CartService` to add a product to the c The `addToCart()` method does the following: * Takes the current `product` as an argument. - * Uses the `CartService` `addToCart()` method to add the product the cart. + * Uses the `CartService` `addToCart()` method to add the product to the cart. * Displays a message that you've added a product to the cart. 1. In `product-details.component.html`, add a button with the label **Buy**, and bind the `click()` event to the `addToCart()` method.