docs(glossary): input decorator in same line

closes #1327
According to styleguide the @Input() decorator should be placed in the same line
This commit is contained in:
Ferdinand Malcher 2016-05-07 20:55:25 -06:00 committed by Ward Bell
parent 5eb0dbc517
commit 8b19a5622a
1 changed files with 1 additions and 2 deletions

View File

@ -209,8 +209,7 @@ include _util-fns
@Component({...}) @Component({...})
export class AppComponent { export class AppComponent {
constructor(@Inject('SpecialFoo') public foo:Foo) {} constructor(@Inject('SpecialFoo') public foo:Foo) {}
@Input() @Input() name:string;
name:string;
} }
``` ```
The scope of a decorator is limited to the language feature The scope of a decorator is limited to the language feature