Skip to content

Commit

Permalink
chore: fix docs generation script (#6881)
Browse files Browse the repository at this point in the history
Remove unnecessary colon that caused docs script to fail.
  • Loading branch information
jakovljevic-mladen committed Mar 23, 2022
1 parent ef416f0 commit 15ca4a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/internal/operators/retryWhen.ts
Expand Up @@ -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<T>(notifier: (errors: Observable<any>) => Observable<any>): MonoTypeOperatorFunction<T> {
return operate((source, subscriber) => {
Expand Down

0 comments on commit 15ca4a7

Please sign in to comment.