From a61fb85088af320db2d48a7ed8836988d1d7d580 Mon Sep 17 00:00:00 2001 From: robonen Date: Mon, 28 Jul 2025 14:42:30 +0700 Subject: [PATCH] docs(core/stdlib): update @since annotation for clarity --- core/stdlib/src/async/retry/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/core/stdlib/src/async/retry/index.ts b/core/stdlib/src/async/retry/index.ts index 450880a..a2a099f 100644 --- a/core/stdlib/src/async/retry/index.ts +++ b/core/stdlib/src/async/retry/index.ts @@ -38,6 +38,7 @@ const RetryEarlyExit = Symbol('RetryEarlyExit'); * .then(response => response.json()) * }, { times: 3, delay: 1000 }); * + * @since 0.0.8 */ export async function retry( fn: RetryFunction,