Skip to content

Commit

Permalink
docs: Update import information for onErrorResumeNext, fix info for p…
Browse files Browse the repository at this point in the history
…artition
  • Loading branch information
benlesh committed Jan 12, 2022
1 parent eb50553 commit a803892
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docs_app/content/guide/importing.md
Expand Up @@ -56,11 +56,12 @@ ending with `With`). Those are:
| [`combineLatest`](/api/operators/combineLatest) | {@link combineLatest} | {@link combineLatestWith} |
| [`concat`](/api/operators/concat) | {@link concat} | {@link concatWith} |
| [`merge`](/api/operators/merge) | {@link merge} | {@link mergeWith} |
| [`onErrorResumeNext`](/api/operators/onErrorResumeNext) | {@link onErrorResumeNext} | - |
| [`partition`](/api/operators/partition) | {@link partition} | - |
| [`onErrorResumeNext`](/api/operators/onErrorResumeNext) | {@link onErrorResumeNext} | {@link onErrorResumeNextWith} |
| [`race`](/api/operators/race) | {@link race} | {@link raceWith} |
| [`zip`](/api/operators/zip) | {@link zip} | {@link zipWith} |

`partition`, the operator, is a special case, as it is deprecated and you should be using the `partition` creation function exported from `'rxjs'` instead.

For example, the old and deprecated way of using [`merge`](/api/operators/merge) from `'rxjs/operators'`
is:

Expand Down

0 comments on commit a803892

Please sign in to comment.