diff --git a/modules/angular2/src/change_detection/pipes/lowercase_pipe.ts b/modules/angular2/src/change_detection/pipes/lowercase_pipe.ts index f785bc3766b..9bc37b49a24 100644 --- a/modules/angular2/src/change_detection/pipes/lowercase_pipe.ts +++ b/modules/angular2/src/change_detection/pipes/lowercase_pipe.ts @@ -18,10 +18,10 @@ export var __esModule = true; * selector: "username-cmp" * }) * @View({ - * inline: "Username: {{ user | lowercase }}" + * template: "Username: {{ user | lowercase }}" * }) * class Username { - * user:string; + * user:string; * } * * ``` diff --git a/modules/angular2/src/change_detection/pipes/observable_pipe.ts b/modules/angular2/src/change_detection/pipes/observable_pipe.ts index c6991733548..461a6358342 100644 --- a/modules/angular2/src/change_detection/pipes/observable_pipe.ts +++ b/modules/angular2/src/change_detection/pipes/observable_pipe.ts @@ -25,7 +25,7 @@ export var __esModule = true; * changeDetection: ON_PUSH * }) * @View({ - * inline: "Task Description {{description|async}}" + * template: "Task Description {{ description | async }}" * }) * class Task { * description:Observable; diff --git a/modules/angular2/src/change_detection/pipes/promise_pipe.ts b/modules/angular2/src/change_detection/pipes/promise_pipe.ts index 5a27f880598..929951ae9d1 100644 --- a/modules/angular2/src/change_detection/pipes/promise_pipe.ts +++ b/modules/angular2/src/change_detection/pipes/promise_pipe.ts @@ -23,10 +23,10 @@ export var __esModule = true; * changeDetection: ON_PUSH * }) * @View({ - * inline: "Task Description {{description|async}}" + * template: "Task Description {{ description | async }}" * }) * class Task { - * description:Promise; + * description:Promise; * } * * ``` diff --git a/modules/angular2/src/change_detection/pipes/uppercase_pipe.ts b/modules/angular2/src/change_detection/pipes/uppercase_pipe.ts index 80659fe2e70..c1d62f68674 100644 --- a/modules/angular2/src/change_detection/pipes/uppercase_pipe.ts +++ b/modules/angular2/src/change_detection/pipes/uppercase_pipe.ts @@ -18,10 +18,10 @@ export var __esModule = true; * selector: "username-cmp" * }) * @View({ - * inline: "Username: {{ user | uppercase }}" + * template: "Username: {{ user | uppercase }}" * }) * class Username { - * user:string; + * user:string; * } * * ```