fix: Typo in async.ts

Closes #7382
This commit is contained in:
Andreas Wissel 2016-03-02 21:34:45 +01:00 committed by Misko Hevery
parent 3e5716ec16
commit 016f0d8e9e
1 changed files with 7 additions and 1 deletions

View File

@ -92,7 +92,13 @@ export class ObservableWrapper {
* }
* ```
*
* Use Rx.Observable but provides an adapter to make it work as specified here:
* The events payload can be accessed by the parameter `$event` on the components output event handler:
*
* ```
* <zippy (open)="onOpen($event)" (close)="onClose($event)"></zippy>
* ```
*
* Uses Rx.Observable but provides an adapter to make it work as specified here:
* https://github.com/jhusain/observable-spec
*
* Once a reference implementation of the spec is available, switch to it.