From 08d2e6c5336862ce4cadf4e32c346ca04f40d4db Mon Sep 17 00:00:00 2001 From: "Jeremy L. Morris" Date: Fri, 3 Jan 2025 09:45:39 -0500 Subject: [PATCH] Fix typo in comment --- frontend/mux.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/mux.go b/frontend/mux.go index e454185c..1ca3c049 100644 --- a/frontend/mux.go +++ b/frontend/mux.go @@ -76,7 +76,7 @@ type handler struct { } // Add adds a handler for the given target -// [targetKey] is the resource path to be handled +// [targetPath] is the resource path to be handled func (m *BuildMux) Add(targetPath string, bf gwclient.BuildFunc, info *bktargets.Target) { if m.handlers == nil { m.handlers = make(map[string]handler)