From bea44484dcf5d9e347ac050a286b0c25dbe0cd7c Mon Sep 17 00:00:00 2001 From: lhaendler <94445906+lhaendler@users.noreply.github.com> Date: Thu, 16 Feb 2023 10:07:54 +0100 Subject: [PATCH] Fix a typo in a godoc comment recocnized -> recognized --- pkg/client/fake/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/client/fake/client.go b/pkg/client/fake/client.go index 5c815b232a..b6a1f07886 100644 --- a/pkg/client/fake/client.go +++ b/pkg/client/fake/client.go @@ -290,7 +290,7 @@ func (t versionedTracker) Create(gvr schema.GroupVersionResource, obj runtime.Ob return nil } -// convertFromUnstructuredIfNecessary will convert runtime.Unstructured for a GVK that is recocnized +// convertFromUnstructuredIfNecessary will convert runtime.Unstructured for a GVK that is recognized // by the schema into the whatever the schema produces with New() for said GVK. // This is required because the tracker unconditionally saves on manipulations, but its List() implementation // tries to assign whatever it finds into a ListType it gets from schema.New() - Thus we have to ensure