From 1d1d0fefc5d2cc78288a7942682f921c8668596f Mon Sep 17 00:00:00 2001 From: Matt Cowley Date: Tue, 28 Apr 2026 19:29:07 +0100 Subject: [PATCH] fix: remove typo in QueryOptions#retry JSDoc --- packages/query-core/src/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/query-core/src/types.ts b/packages/query-core/src/types.ts index 6e26b02746..d38b3c8574 100644 --- a/packages/query-core/src/types.ts +++ b/packages/query-core/src/types.ts @@ -231,7 +231,7 @@ export interface QueryOptions< > { /** * If `false`, failed queries will not retry by default. - * If `true`, failed queries will retry infinitely., failureCount: num + * If `true`, failed queries will retry infinitely. * If set to an integer number, e.g. 3, failed queries will retry until the failed query count meets that number. * If set to a function `(failureCount, error) => boolean` failed queries will retry until the function returns false. */