From a80564dbdd87f088be09e516e4a2f69e78bfd42f Mon Sep 17 00:00:00 2001 From: YuikoTakada Date: Wed, 19 Feb 2020 05:07:26 +0000 Subject: [PATCH] Fix non-ascii characters in pkg/kubelet/qos/doc.go --- pkg/kubelet/qos/doc.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/kubelet/qos/doc.go b/pkg/kubelet/qos/doc.go index 6210ed45e48..ed440f5984b 100644 --- a/pkg/kubelet/qos/doc.go +++ b/pkg/kubelet/qos/doc.go @@ -18,8 +18,8 @@ limitations under the License. // For each resource (memory, CPU) Kubelet supports three classes of containers. // Memory guaranteed containers will receive the highest priority and will get all the resources // they need. -// Burstable containers will be guaranteed their request and can “burst” and use more resources +// Burstable containers will be guaranteed their request and can "burst" and use more resources // when available. -// Best-Effort containers, which don’t specify a request, can use resources only if not being used +// Best-Effort containers, which don't specify a request, can use resources only if not being used // by other pods. package qos // import "k8s.io/kubernetes/pkg/kubelet/qos"