From 43b8b75d88ea8e29f16fe455776e263bf6cdb4f5 Mon Sep 17 00:00:00 2001 From: avoidalone Date: Mon, 11 Mar 2024 15:28:58 +0800 Subject: [PATCH] chore: fix function name Signed-off-by: avoidalone --- helpers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers.go b/helpers.go index 15b2b5f3a3..aea2d56dae 100644 --- a/helpers.go +++ b/helpers.go @@ -260,7 +260,7 @@ func getIdentStringValues(ident *ast.Ident, stringFinder func(ast.Node) (string, return values } -// getIdentStringRecursive returns the string of values of an Ident if they can be resolved +// GetIdentStringValuesRecursive returns the string of values of an Ident if they can be resolved // The difference between this and GetIdentStringValues is that it will attempt to resolve the strings recursively, // if it is passed a *ast.BinaryExpr. See GetStringRecursive for details func GetIdentStringValuesRecursive(ident *ast.Ident) []string {