@@ -2,7 +2,7 @@ block includes
22 include ../_util-fns
33
44:marked
5- The documentation [setup](setup.html) procedures install a _lot_ of files,
5+ The documentation [setup](setup.html) procedures install a _lot_ of files.
66 Most of them can be safely ignored.
77
88 Application files _inside the_ **`src/`** and **`e2e/`** folders matter most to developers.
@@ -19,10 +19,10 @@ table(width="100%")
1919 th File
2020 th Purpose
2121 tr
22- td <code >src/app/... </code >
22+ td <code >src/app/</code >
2323 td
2424 :marked
25- Your Angular application files go here.
25+ Angular application files go here.
2626
2727 Ships with the "Hello Angular" sample's
2828 `AppComponent`, `AppModule`, a component unit test (`app.component.spec.ts`), and
@@ -32,25 +32,25 @@ table(width="100%")
3232 and the <live-example name="setup" plnkr="quickstart-specs">unit test</live-example>
3333 as _live examples_.
3434 tr
35- td <code >e2e/... </code >
35+ td <code >e2e/</code >
3636 td
3737 :marked
38- _End-to-end_ (e2e) tests of your application,
38+ _End-to-end_ (e2e) tests of the application,
3939 written in Jasmine and run by the
4040 <a href="http://www.protractortest.org/" target="_blank" title="Protractor: end-to-end testing for Angular">protractor</a>
4141 e2e test runner.
4242
4343 Initialized with an e2e test for the "Hello Angular" sample.
4444 tr
45- td <code >node_modules/... </code >
45+ td <code >node_modules/</code >
4646 td
4747 :marked
4848 The _npm_ packages installed with the `npm install` command.
4949 tr
5050 td
5151 code.
5252 .editorconfig<br >
53- .git/... <br >
53+ .git/<br >
5454 .gitignore<br >
5555 .travis.yml
5656 td
@@ -138,7 +138,7 @@ table(width="100%")
138138 td
139139 :marked
140140 Tells the **SystemJS** module loader where to find modules
141- referenced in JavaScript `import` statements such as
141+ referenced in JavaScript `import` statements. For example:
142142 code-example( language ="ts" ) .
143143 import { Component } from '@angular/core;
144144 :marked
0 commit comments