From 0d0f1bd26c6333743b76320fdb868d1aabdbb8f5 Mon Sep 17 00:00:00 2001 From: linyouchong Date: Tue, 14 Feb 2017 17:42:49 +0800 Subject: [PATCH] fix spelling error of type store struct, in store.go --- .../src/k8s.io/apiserver/pkg/registry/generic/registry/store.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go b/staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go index 5cb4fcb7156..fe32388908e 100644 --- a/staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go +++ b/staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go @@ -94,7 +94,7 @@ type Store struct { KeyRootFunc func(ctx genericapirequest.Context) string // KeyFunc returns the key for a specific object in the collection. - // KeyFund is dalled for Create/Update/Get/Delete. Note that 'namespace' + // KeyFunc is called for Create/Update/Get/Delete. Note that 'namespace' // can be gotten from ctx. // // KeyFunc and KeyRootFunc must be supplied together or not at all.