From 1a9c18591a6aebb6bd71eee964c66641c823dbb2 Mon Sep 17 00:00:00 2001 From: Shammel Lee Date: Fri, 1 Nov 2024 13:08:58 -0400 Subject: [PATCH] Update onErrorResumeNextWith.ts Tiny typo --- packages/rxjs/src/internal/operators/onErrorResumeNextWith.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/rxjs/src/internal/operators/onErrorResumeNextWith.ts b/packages/rxjs/src/internal/operators/onErrorResumeNextWith.ts index 425af52aae..7aca5d8fe6 100644 --- a/packages/rxjs/src/internal/operators/onErrorResumeNextWith.ts +++ b/packages/rxjs/src/internal/operators/onErrorResumeNextWith.ts @@ -10,7 +10,7 @@ export function onErrorResumeNextWith( ): OperatorFunction; /** - * When any of the provided Observable emits an complete or error notification, it immediately subscribes to the next one + * When any of the provided Observable emits a complete or error notification, it immediately subscribes to the next one * that was passed. * * Execute series of Observables, subscribes to next one on error or complete.