From d87d8a2db4f15ff8e03f8b964daa2ddb8fd4c4da Mon Sep 17 00:00:00 2001 From: binwiederhier Date: Mon, 21 Jul 2025 11:31:38 +0200 Subject: [PATCH] fmt --- util/sprig/dict.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/util/sprig/dict.go b/util/sprig/dict.go index 0a282add..4bb16d03 100644 --- a/util/sprig/dict.go +++ b/util/sprig/dict.go @@ -185,9 +185,9 @@ func values(dict map[string]any) []any { // // Parameters: // - ps: A variadic list where: -// - The first N-2 arguments are string keys forming the path -// - The second-to-last argument is the default value to return if the path doesn't exist -// - The last argument is the map to traverse +// - The first N-2 arguments are string keys forming the path +// - The second-to-last argument is the default value to return if the path doesn't exist +// - The last argument is the map to traverse // // Returns: // - any: The value found at the specified path, or the default value if not found