diff --git a/src/internal/operators/retryWhen.ts b/src/internal/operators/retryWhen.ts index 66de2d577e..31d6a6ceb7 100644 --- a/src/internal/operators/retryWhen.ts +++ b/src/internal/operators/retryWhen.ts @@ -59,7 +59,7 @@ import { createOperatorSubscriber } from './OperatorSubscriber'; * user can `complete` or `error`, aborting the retry. * @return A function that returns an Observable that mirrors the source * Observable with the exception of an `error`. - * @deprecated: Will be removed in v9 or v10, use {@link retry}'s `delay` option instead. + * @deprecated Will be removed in v9 or v10, use {@link retry}'s `delay` option instead. */ export function retryWhen(notifier: (errors: Observable) => Observable): MonoTypeOperatorFunction { return operate((source, subscriber) => {