Skip to content

Commit

Permalink
Docs: Fix links to RxJS methods in README (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
demurgos authored and phated committed May 14, 2018
1 parent 82fde9e commit 457ac2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ Optionally takes a callback to call when async tasks are complete.
- Completion: [onFulfilled][promise-onfulfilled] method called
- Error: [onRejected][promise-onrejected] method called
* `Observable` (e.g. from [RxJS v5][rxjs5-observable] or [RxJS v4][rxjs5-observable]) returned
- Completion: [complete][rxjs5-subscriber-complete] method called
- Error: [error][rxjs5-subscriber-error] method called
- Completion: [complete][rxjs5-observer-complete] method called
- Error: [error][rxjs5-observer-error] method called

__Warning:__ Sync tasks are __not supported__ and your function will never complete if the one of the above strategies is not used to signal completion. However, thrown errors will be caught by the domain.

Expand Down

0 comments on commit 457ac2a

Please sign in to comment.