From 8500abeb39aaec4cda544ae4417fe4fd8236bd6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ignacio=20Andr=C3=A9s=20Molina?= Date: Fri, 13 Feb 2026 21:36:32 -0300 Subject: [PATCH] docs(non-interactive-env): fix typos in idempotency comment --- src/hooks/non-interactive-env/non-interactive-env-hook.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hooks/non-interactive-env/non-interactive-env-hook.ts b/src/hooks/non-interactive-env/non-interactive-env-hook.ts index 46ab2e09..758a1eb7 100644 --- a/src/hooks/non-interactive-env/non-interactive-env-hook.ts +++ b/src/hooks/non-interactive-env/non-interactive-env-hook.ts @@ -57,7 +57,7 @@ export function createNonInteractiveEnvHook(_ctx: PluginInput) { const envPrefix = buildEnvPrefix(NON_INTERACTIVE_ENV, "unix") // Check if the command already starts with the prefix to avoid stacking. - // This maintain the non-interactive behaivor but make the operation idempotent. + // This maintains the non-interactive behavior and makes the operation idempotent. if (command.trim().startsWith(envPrefix.trim())) { return }