Sfoglia il codice sorgente

Fix grammar for "does not exist"

as opposed to "does not exists"

Signed-off-by: frobnicaty <92033765+frobnicaty@users.noreply.github.com>
frobnicaty 3 anni fa
parent
commit
d78b883576
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      libnetwork/networkdb/cluster.go

+ 2 - 2
libnetwork/networkdb/cluster.go

@@ -419,10 +419,10 @@ func (nDB *NetworkDB) reapTableEntries() {
 
 
 			okTable, okNetwork := nDB.deleteEntry(nid, tname, key)
 			okTable, okNetwork := nDB.deleteEntry(nid, tname, key)
 			if !okTable {
 			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 {
 			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
 			return false