We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2587ee8 commit 9c8fa65Copy full SHA for 9c8fa65
1 file changed
packages/rxjs/src/internal/operators/retryWhen.ts
@@ -56,8 +56,7 @@ import type { MonoTypeOperatorFunction, ObservableInput } from '../types.js';
56
* user can `complete` or `error`, aborting the retry.
57
* @return A function that returns an Observable that mirrors the source
58
* Observable with the exception of an `error`.
59
- * @deprecated Will be removed in v9 or v10, use {@link retry}'s `delay` option instead.
60
- * Will be removed in v9 or v10. Use {@link retry}'s {@link RetryConfig#delay delay} option instead.
+ * @deprecated Will be removed in v9 or v10. Use {@link retry}'s {@link RetryConfig#delay delay} option instead.
61
* Instead of `retryWhen(() => notify$)`, use: `retry({ delay: () => notify$ })`.
62
*/
63
export function retryWhen<T>(notifier: (errors: Observable<any>) => ObservableInput<any>): MonoTypeOperatorFunction<T> {
0 commit comments