diff --git a/docs/pages/progressive-loading.md b/docs/pages/progressive-loading.md
index 1ebcb69d0..a2ff94c95 100644
--- a/docs/pages/progressive-loading.md
+++ b/docs/pages/progressive-loading.md
@@ -47,7 +47,7 @@ Create _myhub.html_ with:
- Hello World!
+ Hello World.
```
@@ -63,7 +63,7 @@ Next edit your `package.json` so that the start script looks like:
```json
"scripts": {
"start": "http-server -c-1 ."
-}
+},
```
This allows us to start the server with:
@@ -74,7 +74,9 @@ This allows us to start the server with:
Open [http://127.0.0.1:8080/myhub.html](http://127.0.0.1:8080/myhub.html). You should see the *Hello world!* test.
-> Before proceeding kill the development server so we can install some dependencies. Use cmd+c on Mac or ctrl+c on Windows or Linux/BSD.
+> Before proceeding open a new command-line
+> terminal that will be used for additional
+> `npm install` commands.
### Install steal, steal-tools, and jquery
@@ -85,12 +87,6 @@ Installing these 3 dependencies gives us everything we need to build our applica
> npm install steal-tools steal-less steal-css --save-dev
```
-Now restart your server; you can keep it on while you develop the rest of the application.
-
-```
-> npm start
-```
-
## Import your first module
### Create the module
@@ -112,7 +108,7 @@ Update _myhub.html_ with:
- Hello World!
+ Hello World.
@@ -182,8 +178,6 @@ Internally Steal resolves all module identifiers into [moduleName moduleNames],
### Install and import bootstrap
-> Again kill your server using cmd+c on Mac or ctrl+c on Windows / Linux.
-
Next install bootstrap with:
```
@@ -201,12 +195,12 @@ Update the _myhub.html_ to use bootstrap with:
+ Hello World.