diff --git a/pkg/quota/evaluator/core/persistent_volume_claims.go b/pkg/quota/evaluator/core/persistent_volume_claims.go index a55be74ab1..0cae054d8d 100644 --- a/pkg/quota/evaluator/core/persistent_volume_claims.go +++ b/pkg/quota/evaluator/core/persistent_volume_claims.go @@ -139,7 +139,7 @@ func (p *pvcEvaluator) GroupKind() schema.GroupKind { return api.Kind("PersistentVolumeClaim") } -// Handles returns true if the evalutor should handle the specified operation. +// Handles returns true if the evaluator should handle the specified operation. func (p *pvcEvaluator) Handles(operation admission.Operation) bool { return admission.Create == operation } diff --git a/pkg/quota/evaluator/core/pods.go b/pkg/quota/evaluator/core/pods.go index 4f105fea9a..403238f026 100644 --- a/pkg/quota/evaluator/core/pods.go +++ b/pkg/quota/evaluator/core/pods.go @@ -130,7 +130,7 @@ func (p *podEvaluator) GroupKind() schema.GroupKind { return api.Kind("Pod") } -// Handles returns true of the evalutor should handle the specified operation. +// Handles returns true of the evaluator should handle the specified operation. func (p *podEvaluator) Handles(operation admission.Operation) bool { // TODO: update this if/when pods support resizing resource requirements. return admission.Create == operation diff --git a/pkg/quota/evaluator/core/services.go b/pkg/quota/evaluator/core/services.go index e6c543db0d..78c03a9064 100644 --- a/pkg/quota/evaluator/core/services.go +++ b/pkg/quota/evaluator/core/services.go @@ -92,7 +92,7 @@ func (p *serviceEvaluator) GroupKind() schema.GroupKind { return api.Kind("Service") } -// Handles returns true of the evalutor should handle the specified operation. +// Handles returns true of the evaluator should handle the specified operation. func (p *serviceEvaluator) Handles(operation admission.Operation) bool { // We handle create and update because a service type can change. return admission.Create == operation || admission.Update == operation