From b79cbcc3db5049eab1ad506cb0cae3fdd2289d97 Mon Sep 17 00:00:00 2001 From: redwrasse Date: Mon, 11 Sep 2023 21:54:42 -0700 Subject: [PATCH] mvcc: cleanup comment in HashStorage.Store Signed-off-by: redwrasse --- server/storage/mvcc/hash.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/storage/mvcc/hash.go b/server/storage/mvcc/hash.go index cf9ffe3c0..798bff697 100644 --- a/server/storage/mvcc/hash.go +++ b/server/storage/mvcc/hash.go @@ -97,7 +97,7 @@ type HashStorage interface { // HashByRev computes the hash of all MVCC revisions up to a given revision. HashByRev(rev int64) (hash KeyValueHash, currentRev int64, err error) - // Store adds hash value in local cache, allowing it can be returned by HashByRev. + // Store adds hash value in local cache, allowing it to be returned by HashByRev. Store(valueHash KeyValueHash) // Hashes returns list of up to `hashStorageMaxSize` newest previously stored hashes.