Skip to content

Commit

Permalink
fix promise link (#6664)
Browse files Browse the repository at this point in the history
  • Loading branch information
mostafa8026 committed Nov 5, 2021
1 parent 62aca85 commit ecbc6c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs_app/content/guide/observable.md
Expand Up @@ -5,7 +5,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) |
| **Push** | [`Promise`](https://developer.mozilla.org/en-US/docs/Mozilla/JavaScript_code_modules/Promise.jsm/Promise) | [`Observable`](/api/index/class/Observable) |
| **Push** | [`Promise`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) | [`Observable`](/api/index/class/Observable) |

**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 ecbc6c1

Please sign in to comment.