docs(pipes): fix @View

we all copy/pasta ObservablePipe which had the typo

Closes #1958
This commit is contained in:
gdi2290
2015-05-18 02:58:13 -07:00
committed by Misko Hevery
parent 986038242a
commit f9fd4926ef
4 changed files with 7 additions and 7 deletions

View File

@ -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;
* }
*
* ```