diff --git a/public/docs/js/latest/quickstart.jade b/public/docs/js/latest/quickstart.jade
index 6d472f8366..73924e81b4 100644
--- a/public/docs/js/latest/quickstart.jade
+++ b/public/docs/js/latest/quickstart.jade
@@ -54,9 +54,9 @@ p.
// PENDING: "Think of ... as a package" could be clearer.
-// STEP 2 - Import Angular ##########################
+// STEP 3 - Import Angular ##########################
.l-main-section
- h2#section-transpile 2. Import Angular
+ h2#section-transpile 3. Import Angular
p.
Create two files, index.html and
@@ -79,10 +79,10 @@ p.
These modules load at runtime.
-// STEP 3 - Create a component ##########################
+// STEP 4 - Create a component ##########################
.l-main-section
- h2#section-angular-create-account 3. Define a component
+ h2#section-angular-create-account 4. Define a component
p.
Components structure and represent the UI. This quickstart demonstrates the process of creating a component
@@ -165,9 +165,9 @@ p.
-// STEP 4 - Bootstrap ##########################
+// STEP 5 - Bootstrap ##########################
.l-main-section
- h2#section-transpile 4. Bootstrap
+ h2#section-transpile 5. Bootstrap
p.
At the bottom of app.es6, call the bootstrap() function
@@ -183,10 +183,10 @@ p.
(as well as any child components it contains) to render.
-// STEP 5 - Declare the HTML ##########################
+// STEP 6 - Declare the HTML ##########################
.l-main-section
- h2#section-angular-create-account 5. Declare the HTML
+ h2#section-angular-create-account 6. Declare the HTML
p.
Inside the head tag of index.html, include the es6-shim.js file.
@@ -209,10 +209,10 @@ p.
</body>
</html>
-// STEP 6 - Declare the HTML ##########################
+// STEP 7 - Declare the HTML ##########################
.l-main-section
- h2#section-load-component-module 6. Load the component
+ h2#section-load-component-module 7. Load the component
p.
The last step is to load the module for the my-app component.
@@ -254,10 +254,10 @@ p.
li The component to display on the page
-// STEP 6 - Run a local server ##########################
+// STEP 8 - Run a local server ##########################
.l-main-section
- h2#section-load-component-module 6. Run a local server
+ h2#section-load-component-module 8. Run a local server
// PENDING: add directions (or at least hints) here