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

Commit b3eb189

Browse files
Foxandxsswardbell
authored andcommitted
docs(quickstart): make a few corrections
closes #956
1 parent b5ea1d8 commit b3eb189

File tree

2 files changed

+10
-12
lines changed

2 files changed

+10
-12
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// #docregion
2-
import {bootstrap} from 'angular2/platform/browser'
2+
import {bootstrap} from 'angular2/platform/browser';
33
// #docregion app-component
4-
import {AppComponent} from './app.component'
4+
import {AppComponent} from './app.component';
55
// #enddocregion app-component
66

77
bootstrap(AppComponent);

public/docs/ts/latest/quickstart.jade

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -119,22 +119,20 @@ a(id="package-json")
119119

120120
Here's what these scripts do:
121121

122-
* `npm start` - run the compiler and a server at the same time, both in "watch mode"
122+
* `npm start` - runs the compiler and a server at the same time, both in "watch mode"
123123

124-
* `npm run tsc` - run the TypeScript compiler once
124+
* `npm run tsc` - runs the TypeScript compiler once
125125

126-
* `npm run tsc:w` - run the TypeScript compiler in watch mode;
127-
the process keeps running, awaiting changes to TypeScript files and re-compiling when it sees them.
126+
* `npm run tsc:w` - runs the TypeScript compiler in watch mode;
127+
the process keeps running, awaiting changes to TypeScript files and re-compiling when it sees them
128128

129-
* `npm run lite` - run the <a href="https://www.npmjs.com/package/lite-server" target="_blank">lite-server</a>,
130-
a light-weight, static file server, written and maintained by
131-
<a href="http://johnpapa.net/" target="_blank">John Papa</a>
132-
with excellent support for Angular apps that use routing.
129+
* `npm run lite` - runs the <a href="https://www.npmjs.com/package/lite-server" target="_blank">lite-server</a>,
130+
a light-weight, static file server with excellent support for Angular apps that use routing
133131

134132
* `npm run typings` - runs the [*typings* tool](#typings)
135133

136-
* `npm postinstall` - called by *npm* automatically *after* it successfully completes package installation.
137-
This script installs the [TypeScript definition files](#typings) this app requires.
134+
* `npm run postinstall` - called by *npm* automatically *after* it successfully completes package installation.
135+
This script installs the [TypeScript definition files](#typings) defined in `typings.json`
138136

139137
:marked
140138
**Install these packages** by entering the following *npm* command in a terminal window (command window in Windows):

0 commit comments

Comments
 (0)