From f100d864014e197c64da325b502e13fa6422b8d9 Mon Sep 17 00:00:00 2001 From: astraw99 Date: Sun, 22 Aug 2021 21:19:30 +0800 Subject: [PATCH] fix typo CRED to CRUD Kubernetes-commit: f8b82e189cfdc3aca7b9d789cc6f3131897f0ebc --- tools/cache/delta_fifo.go | 2 +- tools/cache/fifo.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/cache/delta_fifo.go b/tools/cache/delta_fifo.go index 54b81766..2160285b 100644 --- a/tools/cache/delta_fifo.go +++ b/tools/cache/delta_fifo.go @@ -123,7 +123,7 @@ type DeltaFIFO struct { knownObjects KeyListerGetter // Used to indicate a queue is closed so a control loop can exit when a queue is empty. - // Currently, not used to gate any of CRED operations. + // Currently, not used to gate any of CRUD operations. closed bool // emitDeltaTypeReplaced is whether to emit the Replaced or Sync diff --git a/tools/cache/fifo.go b/tools/cache/fifo.go index f82bf22d..5c925502 100644 --- a/tools/cache/fifo.go +++ b/tools/cache/fifo.go @@ -127,7 +127,7 @@ type FIFO struct { // Indication the queue is closed. // Used to indicate a queue is closed so a control loop can exit when a queue is empty. - // Currently, not used to gate any of CRED operations. + // Currently, not used to gate any of CRUD operations. closed bool }