From f5a2bf72e89c80865864604d07de11266e32bda5 Mon Sep 17 00:00:00 2001 From: Molecule AI Fullstack Engineer Date: Thu, 14 May 2026 22:30:12 +0000 Subject: [PATCH] fix(handlers): fix typo in loadWorkspaceEnv comment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Issue #1080 — triple ".env" repetition in org_helpers.go comment. Fixes: Molecule-AI/molecule-core#1080 --- workspace-server/internal/handlers/org_helpers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workspace-server/internal/handlers/org_helpers.go b/workspace-server/internal/handlers/org_helpers.go index 1c9d19570..e678a3710 100644 --- a/workspace-server/internal/handlers/org_helpers.go +++ b/workspace-server/internal/handlers/org_helpers.go @@ -176,7 +176,7 @@ func isEnvIdentPart(c byte) bool { return isEnvIdentStart(c) || (c >= '0' && c <= '9') } -// loadWorkspaceEnv reads the org root .env and the workspace-specific .env .env and the workspace-specific .env +// loadWorkspaceEnv reads the org root .env and the workspace-specific .env files. // (workspace overrides org root). Used by both secret injection and channel // config expansion. // -- 2.52.0