Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

docs(setup-anatomy): edit copy to guidelines #3382

Merged
merged 1 commit into from
Mar 17, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions public/docs/ts/latest/guide/setup-systemjs-anatomy.jade
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ block includes
include ../_util-fns

:marked
The documentation [setup](setup.html) procedures install a _lot_ of files,
The documentation [setup](setup.html) procedures install a _lot_ of files.
Most of them can be safely ignored.

Application files _inside the_ **`src/`** and **`e2e/`** folders matter most to developers.
Expand All @@ -19,10 +19,10 @@ table(width="100%")
th File
th Purpose
tr
td <code>src/app/...</code>
td <code>src/app/</code>
td
:marked
Your Angular application files go here.
Angular application files go here.

Ships with the "Hello Angular" sample's
`AppComponent`, `AppModule`, a component unit test (`app.component.spec.ts`), and
Expand All @@ -32,25 +32,25 @@ table(width="100%")
and the <live-example name="setup" plnkr="quickstart-specs">unit test</live-example>
as _live examples_.
tr
td <code>e2e/...</code>
td <code>e2e/</code>
td
:marked
_End-to-end_ (e2e) tests of your application,
_End-to-end_ (e2e) tests of the application,
written in Jasmine and run by the
<a href="http://www.protractortest.org/" target="_blank" title="Protractor: end-to-end testing for Angular">protractor</a>
e2e test runner.

Initialized with an e2e test for the "Hello Angular" sample.
tr
td <code>node_modules/...</code>
td <code>node_modules/</code>
td
:marked
The _npm_ packages installed with the `npm install` command.
tr
td
code.
.editorconfig<br>
.git/...<br>
.git/<br>
.gitignore<br>
.travis.yml
td
Expand Down Expand Up @@ -138,7 +138,7 @@ table(width="100%")
td
:marked
Tells the **SystemJS** module loader where to find modules
referenced in JavaScript `import` statements such as
referenced in JavaScript `import` statements. For example:
code-example(language="ts").
import { Component } from '@angular/core;
:marked
Expand Down