diff --git a/public/docs/dart/latest/quickstart.jade b/public/docs/dart/latest/quickstart.jade
index bc09e21ff3..7d6e5eb8db 100644
--- a/public/docs/dart/latest/quickstart.jade
+++ b/public/docs/dart/latest/quickstart.jade
@@ -87,16 +87,16 @@ p.
The main Dart file for any Angular 2 app must import
'package:angular2/bootstrap.dart'.
If you put part of your app into one or more additional libraries,
- those additional libraries must import angular.dart
+ those additional libraries must import angular2.dart
instead of bootstrap.dart,
p.
- The bootstrap.dart and angular.dart files
+ The bootstrap.dart and angular2.dart files
provide the same API,
except that bootstrap.dart also provides a
bootstrap() function, which you'll see a little later.
For performance reasons,
- use angular.dart whenever possible.
+ use angular2.dart whenever possible.
h2#section-angular-create-account 3. Define a component
@@ -301,7 +301,7 @@ p.
so that they don't use mirrors.
The transformer doesn't convert other libraries in your app,
so be sure to
- import angular.dart instead of bootstrap.dart
+ import angular2.dart instead of bootstrap.dart
in any libraries you create that use Angular 2
but don't call bootstrap().