refactor: remove square brackets because they mess up the syntax

highlighting
This commit is contained in:
Stavros
2026-02-16 23:33:41 +02:00
parent 5f9bf1cd80
commit 9076216649
2 changed files with 31 additions and 31 deletions

View File

@@ -110,7 +110,7 @@ func buildMapPaths(field reflect.StructField, parentPath string, paths *[]Path)
return
}
mapPath := parentPath + strings.ToUpper(field.Name) + "_[NAME]_"
mapPath := parentPath + strings.ToUpper(field.Name) + "_NAME_"
valueType := fieldType.Elem()
if valueType.Kind() == reflect.Struct {