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:
parent
5eb0dbc517
commit
8b19a5622a
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue