Skip to content

Commit

Permalink
Fix grammar for "does not exist"
Browse files Browse the repository at this point in the history
as opposed to "does not exists"

Signed-off-by: frobnicaty <[email protected]>
  • Loading branch information
frobnicaty committed Dec 3, 2021
1 parent 229bc1e commit d78b883
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libnetwork/networkdb/cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -419,10 +419,10 @@ func (nDB *NetworkDB) reapTableEntries() {

okTable, okNetwork := nDB.deleteEntry(nid, tname, key)
if !okTable {
logrus.Errorf("Table tree delete failed, entry with key:%s does not exists in the table:%s network:%s", key, tname, nid)
logrus.Errorf("Table tree delete failed, entry with key:%s does not exist in the table:%s network:%s", key, tname, nid)
}
if !okNetwork {
logrus.Errorf("Network tree delete failed, entry with key:%s does not exists in the network:%s table:%s", key, nid, tname)
logrus.Errorf("Network tree delete failed, entry with key:%s does not exist in the network:%s table:%s", key, nid, tname)
}

return false
Expand Down

0 comments on commit d78b883

Please sign in to comment.