docs: fix minor grammar mistakes in What is Angular topic (#40892)

PR Close #40892
This commit is contained in:
David Shevitz 2021-02-17 20:49:56 +00:00 committed by Zach Arend
parent cdf1ea1951
commit 1de999b89d
1 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ This section explains the core ideas behind Angular. Understanding these ideas c
{@a components} {@a components}
### Components ### Components
Components are the building blocks that compose an application. A component includes a TypeScript class with a`@Component()` decorator, an HTML template, and styles. The `@Component()` decorator specifies the following Angular-specific information: Components are the building blocks that compose an application. A component includes a TypeScript class with a `@Component()` decorator, an HTML template, and styles. The `@Component()` decorator specifies the following Angular-specific information:
* A CSS selector that defines how the component is used in a template. HTML elements in your template that match this selector become instances of the component. * A CSS selector that defines how the component is used in a template. HTML elements in your template that match this selector become instances of the component.
* An HTML template that instructs Angular how to render the component. * An HTML template that instructs Angular how to render the component.
@ -144,7 +144,7 @@ The Angular CLI is the fastest, easiest, and recommended way to develop Angular
</tr> </tr>
<tr> <tr>
<td><a href="cli/serve">ng serve</a></td> <td><a href="cli/serve">ng serve</a></td>
<td>Builds and serves your application, rebuilding on file changes</td> <td>Builds and serves your application, rebuilding on file changes.</td>
</tr> </tr>
<tr> <tr>
<td><a href="cli/generate">ng generate</a></td> <td><a href="cli/generate">ng generate</a></td>