docs(annotations): correct List for directives for Component
@Component takes a List of directives https://github.com/angular/angular/blob/master/modules/angular2/src/core /annotations_impl/annotations.js#L867
This commit is contained in:
parent
b1ef30aa20
commit
1d11fdecdc
|
@ -832,7 +832,7 @@ export class Component extends Directive {
|
||||||
* })
|
* })
|
||||||
* @View({
|
* @View({
|
||||||
* template: `{{greeter.greet('world')}}!`,
|
* template: `{{greeter.greet('world')}}!`,
|
||||||
* directives: Child
|
* directives: [Child]
|
||||||
* })
|
* })
|
||||||
* class HelloWorld {
|
* class HelloWorld {
|
||||||
* greeter:Greeter;
|
* greeter:Greeter;
|
||||||
|
|
Loading…
Reference in New Issue