docs(promise_pipe.ts): correct "async" pipe

the syntax is now combined with `|async` rather than separate `|promise`
This commit is contained in:
PatrickJS 2015-05-12 13:22:46 -07:00 committed by Victor Berchet
parent 7ff17db113
commit 8ad0205948
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ export var __esModule = true;
* changeDetection: ON_PUSH * changeDetection: ON_PUSH
* }) * })
* @View({ * @View({
* inline: "Task Description {{description|promise}}" * inline: "Task Description {{description|async}}"
* }) * })
* class Task { * class Task {
* description:Promise<string>; * description:Promise<string>;