fix typo CRED to CRUD

Kubernetes-commit: f8b82e189cfdc3aca7b9d789cc6f3131897f0ebc
This commit is contained in:
astraw99 2021-08-22 21:19:30 +08:00 committed by Kubernetes Publisher
parent 590eaed90a
commit f100d86401
2 changed files with 2 additions and 2 deletions

View File

@ -123,7 +123,7 @@ type DeltaFIFO struct {
knownObjects KeyListerGetter knownObjects KeyListerGetter
// Used to indicate a queue is closed so a control loop can exit when a queue is empty. // 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 closed bool
// emitDeltaTypeReplaced is whether to emit the Replaced or Sync // emitDeltaTypeReplaced is whether to emit the Replaced or Sync

2
tools/cache/fifo.go vendored
View File

@ -127,7 +127,7 @@ type FIFO struct {
// Indication the queue is closed. // Indication the queue is closed.
// Used to indicate a queue is closed so a control loop can exit when a queue is empty. // 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 closed bool
} }