@@ -2,7 +2,7 @@ block includes
2
2
include ../_util-fns
3
3
4
4
: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.
6
6
Most of them can be safely ignored.
7
7
8
8
Application files _inside the_ **`src/`** and **`e2e/`** folders matter most to developers.
@@ -19,10 +19,10 @@ table(width="100%")
19
19
th File
20
20
th Purpose
21
21
tr
22
- td <code >src/app/... </code >
22
+ td <code >src/app/</code >
23
23
td
24
24
:marked
25
- Your Angular application files go here.
25
+ Angular application files go here.
26
26
27
27
Ships with the "Hello Angular" sample's
28
28
`AppComponent`, `AppModule`, a component unit test (`app.component.spec.ts`), and
@@ -32,25 +32,25 @@ table(width="100%")
32
32
and the <live-example name="setup" plnkr="quickstart-specs">unit test</live-example>
33
33
as _live examples_.
34
34
tr
35
- td <code >e2e/... </code >
35
+ td <code >e2e/</code >
36
36
td
37
37
:marked
38
- _End-to-end_ (e2e) tests of your application,
38
+ _End-to-end_ (e2e) tests of the application,
39
39
written in Jasmine and run by the
40
40
<a href="http://www.protractortest.org/" target="_blank" title="Protractor: end-to-end testing for Angular">protractor</a>
41
41
e2e test runner.
42
42
43
43
Initialized with an e2e test for the "Hello Angular" sample.
44
44
tr
45
- td <code >node_modules/... </code >
45
+ td <code >node_modules/</code >
46
46
td
47
47
:marked
48
48
The _npm_ packages installed with the `npm install` command.
49
49
tr
50
50
td
51
51
code.
52
52
.editorconfig<br >
53
- .git/... <br >
53
+ .git/<br >
54
54
.gitignore<br >
55
55
.travis.yml
56
56
td
@@ -138,7 +138,7 @@ table(width="100%")
138
138
td
139
139
:marked
140
140
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:
142
142
code-example( language ="ts" ) .
143
143
import { Component } from '@angular/core;
144
144
:marked
0 commit comments