From 9edd38288e0fb0b02b7d84bbfe2f097fb4c4ff05 Mon Sep 17 00:00:00 2001 From: Kathy Walrath Date: Mon, 3 Aug 2015 07:37:10 -0700 Subject: [PATCH] angular.dart -> angular2.dart in quickstart text typo caught by reviewer --- public/docs/dart/latest/quickstart.jade | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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().