From 75febe7511d4cec57b06cc69f7e36c15085ad129 Mon Sep 17 00:00:00 2001 From: Nathan Friend Date: Mon, 9 Apr 2018 10:54:44 -0300 Subject: [PATCH] docs(upgrade): fix detail regarding bootstrapping order (#23225) (#23270) Clarify that Angular should be bootstrapped before AngularJS. Closes angular/angular#23225 PR Close #23270 --- packages/upgrade/src/static/upgrade_module.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/upgrade/src/static/upgrade_module.ts b/packages/upgrade/src/static/upgrade_module.ts index 93d1b16a61..d8e31b5e16 100644 --- a/packages/upgrade/src/static/upgrade_module.ts +++ b/packages/upgrade/src/static/upgrade_module.ts @@ -72,7 +72,8 @@ import {NgAdapterInjector} from './util'; * use camelCase. * c. However the template binding syntax will always use the Angular style, e.g. square * brackets (`[...]`) for property binding. - * 8. AngularJS is always bootstrapped first and owns the root component. + * 8. Angular is bootstrapped first; AngularJS is bootstrapped second. AngularJS always owns the + * root component of the application. * 9. The new application is running in an Angular zone, and therefore it no longer needs calls * to `$apply()`. *