From 15ca4a766348bdcb93677cce05fbd11512dd2dea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mladen=20Jakovljevi=C4=87?= Date: Wed, 23 Mar 2022 21:05:37 +0100 Subject: [PATCH] chore: fix docs generation script (#6881) Remove unnecessary colon that caused docs script to fail. --- src/internal/operators/retryWhen.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) => {