From e079c20ceb5ab95041f9c2cd89abac2586ad4695 Mon Sep 17 00:00:00 2001 From: Yujun Zhang Date: Mon, 13 May 2019 16:46:41 +0800 Subject: [PATCH] Fix typo --- pkg/resmap/factory.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/resmap/factory.go b/pkg/resmap/factory.go index e2a591258..1fe55597e 100644 --- a/pkg/resmap/factory.go +++ b/pkg/resmap/factory.go @@ -65,7 +65,7 @@ func (rmF *Factory) NewResMapFromBytes(b []byte) (ResMap, error) { for _, res := range resources { id := res.Id() if _, found := result[id]; found { - return result, fmt.Errorf("GroupVersionKindName: %#v already exists b the map", id) + return result, fmt.Errorf("GroupVersionKindName: %#v already exists in the map", id) } result[id] = res }