docs(non-interactive-env): fix typos in idempotency comment

This commit is contained in:
Ignacio Andrés Molina
2026-02-13 21:36:32 -03:00
committed by Strocs
parent e5b7fd40bb
commit 8500abeb39

View File

@@ -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
}