docs: Fix component decorator closing brackets (#38754)

PR Close #38754
This commit is contained in:
Kuzivakwashe 2020-09-09 11:50:54 +02:00 committed by atscott
parent ded075a79c
commit 19a484302d
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ In the following example, the `@Component()` metadata object and the class const
@Component({
selector: 'app-typical',
template: '<div>A typical component for {{data.name}}</div>'
)}
})
export class TypicalComponent {
@Input() data: TypicalData;
constructor(private someService: SomeService) { ... }