docs(upgrade): fix sub-ordered-list syntax (#18487) (#18487)

We must always use 1., 2. etc, to indicate ordered lists, even for sub-lists.
We can change the sublist to display as a., b. etc, via CSS.

PR Close #18487

PR Close #18487
This commit is contained in:
Peter Bacon Darwin 2017-08-17 13:38:12 +01:00 committed by Jason Aden
parent 70156bc4ed
commit 4258c3d1df
1 changed files with 3 additions and 3 deletions

View File

@ -73,12 +73,12 @@ import {NgAdapterInjector} from './util';
* 7. Whenever an "upgraded"/"downgraded" component is instantiated the host element is owned by
* the framework doing the instantiation. The other framework then instantiates and owns the
* view for that component.
* a. This implies that the component bindings will always follow the semantics of the
* 1. This implies that the component bindings will always follow the semantics of the
* instantiation framework.
* b. The DOM attributes are parsed by the framework that owns the current template. So
* 2. The DOM attributes are parsed by the framework that owns the current template. So
* attributes in AngularJS templates must use kebab-case, while AngularJS templates must use
* camelCase.
* c. However the template binding syntax will always use the Angular style, e.g. square
* 3. However the template binding syntax will always use the Angular style, e.g. square
* brackets (`[...]`) for property binding.
* 8. Angular is bootstrapped first; AngularJS is bootstrapped second. AngularJS always owns the
* root component of the application.