From 2a99e7e7644b29aab5b9905768a5b296d3c00454 Mon Sep 17 00:00:00 2001 From: JUN YANG Date: Sun, 14 Mar 2021 00:17:58 +0800 Subject: [PATCH] Fix misspelling of condition. Signed-off-by: JUN YANG Kubernetes-commit: 6c566f6dfa5b76d105ce24b3b0cb7f5e3d50d018 --- pkg/storage/interfaces.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/storage/interfaces.go b/pkg/storage/interfaces.go index ccfe98467..db72d9155 100644 --- a/pkg/storage/interfaces.go +++ b/pkg/storage/interfaces.go @@ -244,7 +244,7 @@ type Interface interface { // ) GuaranteedUpdate( ctx context.Context, key string, ptrToType runtime.Object, ignoreNotFound bool, - precondtions *Preconditions, tryUpdate UpdateFunc, cachedExistingObject runtime.Object) error + preconditions *Preconditions, tryUpdate UpdateFunc, cachedExistingObject runtime.Object) error // Count returns number of different entries under the key (generally being path prefix). Count(key string) (int64, error)