From d7d1ffad24a528306548dad44e78191d90ef73fa Mon Sep 17 00:00:00 2001 From: Guillermo Gaston Date: Wed, 25 Jan 2023 16:55:28 +0100 Subject: [PATCH] Fix typo Co-authored-by: Fabrizio Pandini --- exp/addons/internal/controllers/clusterresourceset_helpers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exp/addons/internal/controllers/clusterresourceset_helpers.go b/exp/addons/internal/controllers/clusterresourceset_helpers.go index c0b8fa1a78e6..5925c47e5178 100644 --- a/exp/addons/internal/controllers/clusterresourceset_helpers.go +++ b/exp/addons/internal/controllers/clusterresourceset_helpers.go @@ -198,7 +198,7 @@ func computeHash(dataArr [][]byte) string { // normalizeData reads content of the resource (configmap or secret) and returns // them serialized with constant order. Secret's data is base64 decoded. // This is useful to achieve consistent data between runs, since the content -// of the data field is a mapp and its order is non deterministic. +// of the data field is a map and its order is non-deterministic. func normalizeData(resource *unstructured.Unstructured) ([][]byte, error) { // Since maps are not ordered, we need to order them to get the same hash at each reconcile. keys := make([]string, 0)