From 3da2432fb9dce67f1236c96a8d81604a98fda523 Mon Sep 17 00:00:00 2001 From: cui fliter Date: Mon, 18 Dec 2023 10:54:53 +0800 Subject: all: fix some function names in comments Signed-off-by: cui fliter --- pkg/compiler/check.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg/compiler') diff --git a/pkg/compiler/check.go b/pkg/compiler/check.go index 00695b6b1..aa83f8c8d 100644 --- a/pkg/compiler/check.go +++ b/pkg/compiler/check.go @@ -423,7 +423,7 @@ type parentDesc struct { fields []*ast.Field } -// templateName return the part before '[' for full template names. +// templateBase return the part before '[' for full template names. func templateBase(name string) string { if pos := strings.IndexByte(name, '['); pos != -1 { return name[:pos] -- cgit mrf-deployment