From cc7287d1beccb9cd91fb021c939a345626951633 Mon Sep 17 00:00:00 2001 From: Kapunahele Wong Date: Fri, 17 Mar 2017 18:24:46 -0400 Subject: [PATCH] docs(setup-anatomy): edit copy to guidelines (#3382) --- .../ts/latest/guide/setup-systemjs-anatomy.jade | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/public/docs/ts/latest/guide/setup-systemjs-anatomy.jade b/public/docs/ts/latest/guide/setup-systemjs-anatomy.jade index 584aa12ff7..60bd8a7b95 100644 --- a/public/docs/ts/latest/guide/setup-systemjs-anatomy.jade +++ b/public/docs/ts/latest/guide/setup-systemjs-anatomy.jade @@ -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. @@ -19,10 +19,10 @@ table(width="100%") th File th Purpose tr - td src/app/... + td src/app/ 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 @@ -32,17 +32,17 @@ table(width="100%") and the unit test as _live examples_. tr - td e2e/... + td e2e/ 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 protractor e2e test runner. Initialized with an e2e test for the "Hello Angular" sample. tr - td node_modules/... + td node_modules/ td :marked The _npm_ packages installed with the `npm install` command. @@ -50,7 +50,7 @@ table(width="100%") td code. .editorconfig
- .git/...
+ .git/
.gitignore
.travis.yml td @@ -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