diff --git a/public/docs/js/latest/quickstart.jade b/public/docs/js/latest/quickstart.jade
index fc873fcdff..7dbc387f85 100644
--- a/public/docs/js/latest/quickstart.jade
+++ b/public/docs/js/latest/quickstart.jade
@@ -36,13 +36,12 @@ p.
h4 AtScript
p.
Angular is built with AtScript. AtScript is an extension of ES6 (ECMAScript 6), the new specification
- of the JavaScript language. This quickstart features AtScript, but Angular
- doesn't require you to write AtScript.
+ of the JavaScript language. This quickstart features AtScript, but you can write Angular in ES5 or ES6 as well.
h4 ES6
p.
AtScript compiles to ES6, which is not widely supported in all browsers today.
- The es6-shim repository allows you to use ES6 or AtScript in the browser.
+ The es6-shim.js
file allows you to use ES6 or AtScript in the browser.
h4 es6-shim
p.
@@ -197,7 +196,7 @@ p.
<html>
<head>
<title>Angular 2 Quickstart</title>
- <script src="/es6-shim/dist/es6-shim.js"></script>
+ <script src="/quickstart/dist/es6-shim.js"></script>
</head>
<body>
@@ -234,8 +233,8 @@ p.
<script>
// Rewrite the paths to load the files
System.paths = {
- 'angular2/*':'/es6-shim/angular2/*.js', // Angular
- 'rtts_assert/*': '/es6-shim/rtts_assert/*.js', //Runtime assertions
+ 'angular2/*':'/quickstart/angular2/*.js', // Angular
+ 'rtts_assert/*': '/quickstart/rtts_assert/*.js', //Runtime assertions
'app': 'app.es6' // The my-app component
};