From bbb8ef1d108bafaff0c645f7c4e162a7c7b13eae Mon Sep 17 00:00:00 2001 From: Carlos Eduardo Arango Gutierrez Date: Thu, 24 Feb 2022 16:20:24 -0500 Subject: [PATCH] Fix typo in pkg/kubelet/pluginmanager/cache/actual_state_of_world Signed-off-by: Carlos Eduardo Arango Gutierrez --- pkg/kubelet/pluginmanager/cache/actual_state_of_world.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/kubelet/pluginmanager/cache/actual_state_of_world.go b/pkg/kubelet/pluginmanager/cache/actual_state_of_world.go index cdf6a0c50a9..b8c81e76f65 100644 --- a/pkg/kubelet/pluginmanager/cache/actual_state_of_world.go +++ b/pkg/kubelet/pluginmanager/cache/actual_state_of_world.go @@ -43,7 +43,7 @@ type ActualStateOfWorld interface { // Note that this is different from desired world cache's AddOrUpdatePlugin // because for the actual state of world cache, there won't be a scenario where // we need to update an existing plugin if the timestamps don't match. This is - // because the plugin should have been unregistered in the reconciller and therefore + // because the plugin should have been unregistered in the reconciler and therefore // removed from the actual state of world cache first before adding it back into // the actual state of world cache again with the new timestamp AddPlugin(pluginInfo PluginInfo) error