From ad3e56f4acda46f06ab836f5efe88d84495958b8 Mon Sep 17 00:00:00 2001 From: Jan Michael Ong Date: Wed, 22 Apr 2026 10:02:24 -0700 Subject: [PATCH] chore: fix incorrect placement Signed-off-by: Jan Michael Ong --- plugins/scaffolder-backend-module-github/src/util.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/scaffolder-backend-module-github/src/util.ts b/plugins/scaffolder-backend-module-github/src/util.ts index aa0bea521d..6b9769e675 100644 --- a/plugins/scaffolder-backend-module-github/src/util.ts +++ b/plugins/scaffolder-backend-module-github/src/util.ts @@ -39,7 +39,6 @@ const DEFAULT_RETRY_DELAY_MS = 1000; * * Retries are enabled by default, but can be disabled by setting either `retries` * or `retryAfter` to 0. - * @public * * @param retries - The number of retry attempts for failed requests. Default is 3. * Setting to 0 will disable retries. @@ -67,6 +66,7 @@ export function isRetryEnabled(retries?: number, retryAfter?: number): boolean { * If retries are enabled (default), the client will retry failed requests up * to the specified number of retries and delay. * To disable retries, set either `retries` or `retryAfter` to 0 in the options. + * @public * * @param octokitOptions - The options for configuring the Octokit client. * Generally provided by the `getOctokitOptions` helper.