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"
|
* selector: "username-cmp"
|
||||||
* })
|
* })
|
||||||
* @View({
|
* @View({
|
||||||
* inline: "Username: {{ user | lowercase }}"
|
* template: "Username: {{ user | lowercase }}"
|
||||||
* })
|
* })
|
||||||
* class Username {
|
* class Username {
|
||||||
* user:string;
|
* user:string;
|
||||||
* }
|
* }
|
||||||
*
|
*
|
||||||
* ```
|
* ```
|
||||||
|
|
|
@ -25,7 +25,7 @@ export var __esModule = true;
|
||||||
* changeDetection: ON_PUSH
|
* changeDetection: ON_PUSH
|
||||||
* })
|
* })
|
||||||
* @View({
|
* @View({
|
||||||
* inline: "Task Description {{description|async}}"
|
* template: "Task Description {{ description | async }}"
|
||||||
* })
|
* })
|
||||||
* class Task {
|
* class Task {
|
||||||
* description:Observable<string>;
|
* description:Observable<string>;
|
||||||
|
|
|
@ -23,10 +23,10 @@ export var __esModule = true;
|
||||||
* changeDetection: ON_PUSH
|
* changeDetection: ON_PUSH
|
||||||
* })
|
* })
|
||||||
* @View({
|
* @View({
|
||||||
* inline: "Task Description {{description|async}}"
|
* template: "Task Description {{ description | async }}"
|
||||||
* })
|
* })
|
||||||
* class Task {
|
* class Task {
|
||||||
* description:Promise<string>;
|
* description:Promise<string>;
|
||||||
* }
|
* }
|
||||||
*
|
*
|
||||||
* ```
|
* ```
|
||||||
|
|
|
@ -18,10 +18,10 @@ export var __esModule = true;
|
||||||
* selector: "username-cmp"
|
* selector: "username-cmp"
|
||||||
* })
|
* })
|
||||||
* @View({
|
* @View({
|
||||||
* inline: "Username: {{ user | uppercase }}"
|
* template: "Username: {{ user | uppercase }}"
|
||||||
* })
|
* })
|
||||||
* class Username {
|
* class Username {
|
||||||
* user:string;
|
* user:string;
|
||||||
* }
|
* }
|
||||||
*
|
*
|
||||||
* ```
|
* ```
|
||||||
|
|
Loading…
Reference in New Issue