docs(core): close tags in example (#29474)

PR Close #29474
This commit is contained in:
Piotr Tomiak 2019-03-22 14:55:48 +01:00 committed by Miško Hevery
parent 66b72bfa58
commit a06f0340d2
1 changed files with 2 additions and 2 deletions

View File

@ -52,7 +52,7 @@ class GiantList {
selector: 'app',
providers: [DataListProvider],
template: `
<giant-list><giant-list>
<giant-list></giant-list>
`,
})
class App {
@ -86,7 +86,7 @@ class LiveData {
providers: [DataProvider],
template: `
Live Update: <input type="checkbox" [(ngModel)]="live">
<live-data [live]="live"><live-data>
<live-data [live]="live"></live-data>
`,
})