From d70bc2480f07a3bf542b4314fad6dca6c1f24ec6 Mon Sep 17 00:00:00 2001 From: Andrew Nester Date: Mon, 2 Sep 2024 11:08:32 +0200 Subject: [PATCH] Update bundle/config/validate/no_workspace_prefix_used.go Co-authored-by: Pieter Noordhuis --- bundle/config/validate/no_workspace_prefix_used.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/config/validate/no_workspace_prefix_used.go b/bundle/config/validate/no_workspace_prefix_used.go index 0f93c7b0d7..2e85395d89 100644 --- a/bundle/config/validate/no_workspace_prefix_used.go +++ b/bundle/config/validate/no_workspace_prefix_used.go @@ -30,7 +30,7 @@ func (m *noWorkspacePrefixUsed) Apply(ctx context.Context, b *bundle.Bundle) dia "/Workspace/${workspace.state_path}", } - // Walk through the bundle configuration, check all the string leaves and + // Walk through the bundle configuration, check all the string leafs and // see if any of the prefixes are used in the remote path. _, err := dyn.Walk(b.Config.Value(), func(p dyn.Path, v dyn.Value) (dyn.Value, error) { vv, ok := v.AsString()