From a803892c1cdae8a8116f728fe38b30511a1c9ba7 Mon Sep 17 00:00:00 2001 From: Ben Lesh Date: Wed, 12 Jan 2022 08:35:45 -0600 Subject: [PATCH] docs: Update import information for onErrorResumeNext, fix info for partition --- docs_app/content/guide/importing.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs_app/content/guide/importing.md b/docs_app/content/guide/importing.md index a643388351a..2eb51fa2fe2 100644 --- a/docs_app/content/guide/importing.md +++ b/docs_app/content/guide/importing.md @@ -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: