From 9ecc0b2bd202ae7c7281b926e536f365cd2bcd68 Mon Sep 17 00:00:00 2001 From: yue9944882 <291271447@qq.com> Date: Tue, 20 Feb 2018 10:38:41 -0500 Subject: [PATCH] fixes document grammar --- pkg/kubelet/pod_workers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/kubelet/pod_workers.go b/pkg/kubelet/pod_workers.go index 6a8a33353f5..6c80bf10322 100644 --- a/pkg/kubelet/pod_workers.go +++ b/pkg/kubelet/pod_workers.go @@ -235,7 +235,7 @@ func (p *podWorkers) removeWorker(uid types.UID) { delete(p.podUpdates, uid) // If there is an undelivered work update for this pod we need to remove it // since per-pod goroutine won't be able to put it to the already closed - // channel when it finish processing the current work update. + // channel when it finishes processing the current work update. if _, cached := p.lastUndeliveredWorkUpdate[uid]; cached { delete(p.lastUndeliveredWorkUpdate, uid) }