This repository was archived by the owner on Dec 4, 2017. It is now read-only.
File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -225,7 +225,7 @@ h1#root-component Step !{step++}: Create a component and add it to your applicat
225
225
here.
226
226
227
227
Components are the basic building blocks of Angular applications. A component controls a portion
228
- of the screen—a *view*—through its associated template
228
+ of the screen—a *view*—through its associated template.
229
229
230
230
a#app-component
231
231
p.
244
244
`AppComponent` component class:
245
245
246
246
- a *selector* that specifies a simple CSS selector for an HTML element that represents
247
- the component
247
+ the component.
248
248
- a *template* that tells Angular how to render the component's view.
249
249
* **A component class** that controls the appearance and behavior of a view
250
250
through its template. Here, you only have the root component, `AppComponent`. Since you don't
@@ -343,9 +343,9 @@ aside.is-right
343
343
344
344
:marked
345
345
That command runs the following two parallel node processes:
346
- * The TypeScript compiler in watch mode
347
- * A static server called _lite-server_ that loads `index.html` in a browser
348
- and refreshes the browser when application files change
346
+ * The TypeScript compiler in watch mode.
347
+ * A static file server called _lite-server_ that loads `index.html` in a browser
348
+ and refreshes the browser when application files change.
349
349
350
350
In a few moments, a browser tab should open and display the following:
351
351
You can’t perform that action at this time.
0 commit comments