Skip to content

Commit c82c1a5

Browse files
abergquistAndrewKushnir
authored andcommitted
docs: made code appear better, etc. (#47336)
Made code appear better and resolved some minor grammatical opportunities/issues. PR Close #47336
1 parent c82de11 commit c82c1a5

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

aio/content/start/index.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ StackBlitz is a browser-based development environment where you can create, save
99

1010
## Prerequisites
1111

12-
To get the most out of this tutorial you should already have a basic understanding of the following.
12+
To get the most out of this tutorial, you should already have a basic understanding of the following.
1313

1414
* [HTML](https://developer.mozilla.org/docs/Learn/HTML "Learning HTML: Guides and tutorials")
1515
* [JavaScript](https://developer.mozilla.org/docs/Web/JavaScript "JavaScript")
@@ -24,20 +24,20 @@ Components define areas of responsibility in the UI that let you reuse sets of U
2424

2525
A component consists of three things:
2626

27-
| | Details |
27+
| Component Part | Details |
2828
|:--- |:--- |
29-
| A component class | Handles data and functionality. |
30-
| An HTML template | Determines the UI. |
31-
| Component-specific styles | Define the look and feel. |
29+
| A component class | Handles data and functionality |
30+
| An HTML template | Determines the UI |
31+
| Component-specific styles | Define the look and feel |
3232

33-
This guide demonstrates building an application with the following components.
33+
This guide demonstrates building an application with the following components:
3434

3535
| Components | Details |
3636
|:--- |:--- |
37-
| `<app-root>` | The first component to load and the container for the other components. |
38-
| `<app-top-bar>` | The store name and checkout button. |
39-
| `<app-product-list>` | The product list. |
40-
| `<app-product-alerts>` | A component that contains the application's alerts. |
37+
| `<app-root>` | The first component to load and the container for the other components |
38+
| `<app-top-bar>` | The store name and checkout button |
39+
| `<app-product-list>` | The product list |
40+
| `<app-product-alerts>` | A component that contains the application's alerts |
4141

4242
<div class="lightbox">
4343

@@ -181,7 +181,7 @@ The `ProductListComponent` also defines a `products` property that contains impo
181181
The next step is to create a new alert feature that uses product data from the `ProductListComponent`.
182182
The alert checks the product's price, and, if the price is greater than &dollar;700, displays a **Notify Me** button that lets users sign up for notifications when the product goes on sale.
183183

184-
This section walks you through creating a child component, `ProductAlertsComponent` that can receive data from its parent component, `ProductListComponent`.
184+
This section walks you through creating a child component, `ProductAlertsComponent`, that can receive data from its parent component, `ProductListComponent`.
185185

186186
1. Click on the plus sign above the current terminal to create a new terminal to run the command to generate the component.
187187

@@ -191,11 +191,11 @@ This section walks you through creating a child component, `ProductAlertsCompone
191191

192192
</div>
193193

194-
1. In the new terminal, generate a new component named `product-alerts` by running the following command.
194+
1. In the new terminal, generate a new component named `product-alerts` by running the following command:
195195

196196
<code-example format="shell" language="shell">
197197

198-
ng generate component product-alerts
198+
`ng generate component product-alerts`
199199

200200
</code-example>
201201

0 commit comments

Comments
 (0)