docs(upgrade): fix detail regarding bootstrapping order (#23225) (#23270)

Clarify that Angular should be bootstrapped before AngularJS.

Closes angular/angular#23225

PR Close #23270
This commit is contained in:
Nathan Friend 2018-04-09 10:54:44 -03:00 committed by Igor Minar
parent b8f4e433d5
commit 75febe7511
1 changed files with 2 additions and 1 deletions

View File

@ -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()`.
*