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.