From d78b8835766221e52842a78402c2b78ac23af530 Mon Sep 17 00:00:00 2001 From: frobnicaty <92033765+frobnicaty@users.noreply.github.com> Date: Mon, 1 Nov 2021 15:25:00 +0000 Subject: [PATCH] Fix grammar for "does not exist" as opposed to "does not exists" Signed-off-by: frobnicaty <92033765+frobnicaty@users.noreply.github.com> --- libnetwork/networkdb/cluster.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libnetwork/networkdb/cluster.go b/libnetwork/networkdb/cluster.go index 6a633dfeda..ce9ad35932 100644 --- a/libnetwork/networkdb/cluster.go +++ b/libnetwork/networkdb/cluster.go @@ -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