docs(annotations): differentiate between component definitions and component instances

Closes #1661
This commit is contained in:
Matthew Hill 2015-05-04 16:50:50 +01:00 committed by Pawel Kozlowski
parent 51839ca677
commit 5d9e573b3e
1 changed files with 3 additions and 3 deletions

View File

@ -24,9 +24,9 @@ import {DEFAULT} from 'angular2/change_detection';
* - The terminal {@link Injector} cannot resolve dependencies. It either throws an error or, if the dependency was
* specified as `@Optional`, returns `null`.
* - The platform injector resolves browser singleton resources, such as: cookies, title, location, and others.
* - *Component Injectors*: Each `@Component` has its own {@link Injector}, and they follow the same parent-child hierarchy
* as the components in the DOM.
* - *Element Injectors*: Each component has a Shadow DOM. Within the Shadow DOM each element has an `ElementInjector`
* - *Component Injectors*: Each component instance has its own {@link Injector}, and they follow the same parent-child hierarchy
* as the component instances in the DOM.
* - *Element Injectors*: Each component instance has a Shadow DOM. Within the Shadow DOM each element has an `ElementInjector`
* which follow the same parent-child hierarchy as the DOM elements themselves.
*
* When a template is instantiated, it also must instantiate the corresponding directives in a depth-first order. The