From 9fcce059e506bb22e082f05c85060ce210aa1cd4 Mon Sep 17 00:00:00 2001 From: Patrice Ferlet Date: Thu, 26 Jun 2025 23:18:11 +0200 Subject: [PATCH] fix(doc): Fixing method name in comment --- generator/configMap.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generator/configMap.go b/generator/configMap.go index 777ed82..585dee3 100644 --- a/generator/configMap.go +++ b/generator/configMap.go @@ -161,7 +161,7 @@ func (c *ConfigMap) AddBinaryData(key string, value []byte) { c.BinaryData[key] = value } -// AddFile adds files from given path to the configmap. It is not recursive, to add all files in a directory, +// AppendDir adds files from given path to the configmap. It is not recursive, to add all files in a directory, // you need to call this function for each subdirectory. func (c *ConfigMap) AppendDir(path string) error { // read all files in the path and add them to the configmap