From 53aa35befc2bf079c9fbc95a2fe90e5248b4b213 Mon Sep 17 00:00:00 2001
From: Sid <122173059+hugo-sid@users.noreply.github.com>
Date: Fri, 24 Mar 2023 12:22:58 +0530
Subject: [PATCH] docs: improve readability, use future tense to indicate
future events (#49578)
Summary of changes:
* change 'notice that' -> note that
* break large sentence to smaller ones to improve readability
* use future tense & modal verbs to indicate future events
PR Close #49578
---
aio/content/start/index.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/aio/content/start/index.md b/aio/content/start/index.md
index 18f4d32ae14..654c4c506e0 100644
--- a/aio/content/start/index.md
+++ b/aio/content/start/index.md
@@ -137,7 +137,7 @@ This section guides you through editing the HTML, also known as the template.
The application now displays the name and description of each product in the list.
- Notice that the final product does not have a description paragraph.
+ Note that the final product does not have a description paragraph.
Angular doesn't create the `
` element because the product's description property is empty.
@@ -178,8 +178,8 @@ For more information, see [Introduction to components and templates](guide/archi
Currently, the product list displays the name and description of each product.
The `ProductListComponent` also defines a `products` property that contains imported data for each product from the `products` array in `products.ts`.
-The next step is to create a new alert feature that uses product data from the `ProductListComponent`.
-The alert checks the product's price, and, if the price is greater than $700, displays a **Notify Me** button that lets users sign up for notifications when the product goes on sale.
+The next step is to create a new alert feature that will use product data from the `ProductListComponent`.
+The alert should check the product's price. If it is found to be greater than $700, a Notify Me button should be displayed. When a user clicks on the button, they should be able to sign up for notifications that will inform them when the product goes on sale.
This section walks you through creating a child component, `ProductAlertsComponent`, that can receive data from its parent component, `ProductListComponent`.