docs(quickstart): Minor typo fixes. (#2253)

This commit is contained in:
Aristeidis Bampakos 2016-09-04 04:10:11 +03:00 committed by Ward Bell
parent a9e7781844
commit b16b05805e
1 changed files with 5 additions and 5 deletions

View File

@ -225,7 +225,7 @@ h1#root-component Step !{step++}: Create a component and add it to your applicat
here.
Components are the basic building blocks of Angular applications. A component controls a portion
of the screen—a *view*—through its associated template
of the screen—a *view*—through its associated template.
a#app-component
p.
@ -244,7 +244,7 @@ p.
`AppComponent` component class:
- a *selector* that specifies a simple CSS selector for an HTML element that represents
the component
the component.
- a *template* that tells Angular how to render the component's view.
* **A component class** that controls the appearance and behavior of a view
through its template. Here, you only have the root component, `AppComponent`. Since you don't
@ -343,9 +343,9 @@ aside.is-right
:marked
That command runs the following two parallel node processes:
* The TypeScript compiler in watch mode
* A static server called _lite-server_ that loads `index.html` in a browser
and refreshes the browser when application files change
* The TypeScript compiler in watch mode.
* A static file server called _lite-server_ that loads `index.html` in a browser
and refreshes the browser when application files change.
In a few moments, a browser tab should open and display the following: