Skip to content

Commit

Permalink
docs(observable): update comparison table for consistency
Browse files Browse the repository at this point in the history
Consistency in comparison table
  • Loading branch information
rzymek authored and kwonoj committed Apr 24, 2017
1 parent 3a1202b commit e69d876
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/observable.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Observables are lazy Push collections of multiple values. They fill the missing

| | Single | Multiple |
| --- | --- | --- |
| **Pull** | [`Function`](https://developer.mozilla.org/en-US/docs/Glossary/Function) | [Iterator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols) |
| **Pull** | [`Function`](https://developer.mozilla.org/en-US/docs/Glossary/Function) | [`Iterator`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols) |
| **Push** | [`Promise`](https://developer.mozilla.org/en-US/docs/Mozilla/JavaScript_code_modules/Promise.jsm/Promise) | [`Observable`](../class/es6/Observable.js~Observable.html) |

**Example.** The following is an Observable that pushes the values `1`, `2`, `3` immediately (synchronously) when subscribed, and the value `4` after one second has passed since the subscribe call, then completes:
Expand Down

0 comments on commit e69d876

Please sign in to comment.