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

Commit 987345f

Browse files
committed
docs(quickstart): Jesus' suggestions
1 parent ca89d59 commit 987345f

File tree

2 files changed

+9
-12
lines changed

2 files changed

+9
-12
lines changed

public/docs/ts/latest/guide/setup.jade

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ block includes
99
play with the code, share your changes with friends, and download and run the code on your own machine.
1010

1111
As much fun as this is
12-
* you can't ship your app in plunker.
13-
* development in the browser is slow.
12+
* you can't ship your app in plunker
13+
* development in the browser is slow
1414
* you aren't always online
15-
* the type support, refactoring, and code completion only work in your local IDE.
15+
* the type support, refactoring, and code completion only work in your local IDE
1616

17-
# Setup a local develoment environment
17+
# Setup a local development environment
1818

1919
Fortunately, setting up a local development environment is quick and easy:
2020
1. `git clone` the [**QuickStart** repository](https://github.com/angular/quickstart "Clone the github QuickStart repo")
@@ -113,9 +113,6 @@ table(width="100%")
113113
by running the commands `node -v` and `npm -v` in a terminal/console window.
114114
Older versions produce errors.
115115

116-
We recommend [nvm](https://github.com/creationix/nvm) for managing multiple versions of node and npm. You may need [nvm](https://github.com/creationix/nvm) if you already have projects running on your machine that use other versions of node and npm.
117-
118-
.l-sub-section
119-
:marked
120-
### Next step
121-
[The _Tour of Heroes_ tutorial](../tutorial)
116+
We recommend [nvm](https://github.com/creationix/nvm) for managing multiple versions of node and npm.
117+
You may need [nvm](https://github.com/creationix/nvm) if you already have projects running on your machine that
118+
use other versions of node and npm.

public/docs/ts/latest/quickstart.jade

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ nter
1515
The `AppComponent` template renders a "Hello Angular!" header into a custom `<my-app>` element.
1616

1717
The `AppModule` tells Angular<br>
18-
&nbsp;&nbsp;***what you need*** &mdash; _imports_ the `BrowserModule` to display the application in the browser.<br>
18+
&nbsp;&nbsp;***what you need*** &mdash; _imports_ the `BrowserModule` to run the application in the browser.<br>
1919
&nbsp;&nbsp;***what you created*** &mdash; _declares_ the `AppComponent`.<br>
2020
&nbsp;&nbsp;***what to show*** &mdash; _bootstrap_ the `AppComponent` onto the `index.html` web page within the `<my-app>` tag.
2121

2222
+makeExample('index.html','my-app','index.html (body)')(format='.')
2323
:marked
2424
You'll find more _live code examples_ like this one on almost every documentation page.
25-
25+
2626
# TypeScript
2727
This example is written in <a href="http://www.typescriptlang.org/" target="_blank" title="TypeScript">TypeScript</a>,
2828
a strongly-typed, super-set of the latest JavaScript.

0 commit comments

Comments
 (0)