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,