diff --git a/aio/content/guide/aot-compiler.md b/aio/content/guide/aot-compiler.md index df846a9209..9e8a7f67c8 100644 --- a/aio/content/guide/aot-compiler.md +++ b/aio/content/guide/aot-compiler.md @@ -62,7 +62,7 @@ In the following example, the `@Component()` metadata object and the class const @Component({ selector: 'app-typical', template: '
A typical component for {{data.name}}
' -)} +}) export class TypicalComponent { @Input() data: TypicalData; constructor(private someService: SomeService) { ... }