From 4602d4fcfc7137d5a49d6cfe0c2fdc8a79dbe316 Mon Sep 17 00:00:00 2001 From: Ethan Chu Date: Tue, 10 Jan 2017 15:27:23 +0800 Subject: [PATCH] Fix typo in resource quota controller comment --- pkg/controller/resourcequota/resource_quota_controller.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/controller/resourcequota/resource_quota_controller.go b/pkg/controller/resourcequota/resource_quota_controller.go index 0f1509eefdd..36785ad1e3d 100644 --- a/pkg/controller/resourcequota/resource_quota_controller.go +++ b/pkg/controller/resourcequota/resource_quota_controller.go @@ -46,7 +46,7 @@ type ResourceQuotaControllerOptions struct { Registry quota.Registry // Knows how to build controllers that notify replenishment events ControllerFactory ReplenishmentControllerFactory - // Controls full resync of objects monitored for replenihsment. + // Controls full resync of objects monitored for replenishment. ReplenishmentResyncPeriod controller.ResyncPeriodFunc // List of GroupKind objects that should be monitored for replenishment at // a faster frequency than the quota controller recalculation interval @@ -63,7 +63,7 @@ type ResourceQuotaController struct { rqController *cache.Controller // ResourceQuota objects that need to be synchronized queue workqueue.RateLimitingInterface - // missingUsageQueue holds objects that are missing the initial usage informatino + // missingUsageQueue holds objects that are missing the initial usage information missingUsageQueue workqueue.RateLimitingInterface // To allow injection of syncUsage for testing. syncHandler func(key string) error