chore(docs): remove @View decorator from examples in docs

Closes #4666
This commit is contained in:
Alex Eagle
2015-10-11 07:41:19 -07:00
committed by Alex Eagle
parent 62005dd127
commit b96784756c
36 changed files with 181 additions and 263 deletions

View File

@ -212,9 +212,7 @@ export class SkipSelfMetadata {
*
* @Component({
* selector: 'parent-cmp',
* providers: [HostService]
* })
* @View({
* providers: [HostService],
* template: `
* Dir: <child-directive></child-directive>
* `,
@ -225,9 +223,7 @@ export class SkipSelfMetadata {
*
* @Component({
* selector: 'app',
* providers: [OtherService]
* })
* @View({
* providers: [OtherService],
* template: `
* Parent: <parent-cmp></parent-cmp>
* `,