docs(aio): typo in metadata guide (#18730)

PR Close #18730
This commit is contained in:
cexbrayat 2017-08-16 15:08:39 +02:00 committed by Miško Hevery
parent 6e3498ca8e
commit 5f5a8e1da6
1 changed files with 1 additions and 1 deletions

View File

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