docs(pipes): fix @View
we all copy/pasta ObservablePipe which had the typo Closes #1958
This commit is contained in:
parent
986038242a
commit
f9fd4926ef
|
@ -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;
|
||||
* }
|
||||
*
|
||||
* ```
|
||||
|
|
|
@ -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<string>;
|
||||
|
|
|
@ -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<string>;
|
||||
* description:Promise<string>;
|
||||
* }
|
||||
*
|
||||
* ```
|
||||
|
|
|
@ -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;
|
||||
* }
|
||||
*
|
||||
* ```
|
||||
|
|
Loading…
Reference in New Issue