From 0b6529c4623af8128a5ceaf1e2cd33743f68fe7f Mon Sep 17 00:00:00 2001 From: lubronzhan Date: Thu, 13 Jun 2024 00:14:09 -0700 Subject: [PATCH] mvcc: fix typo Signed-off-by: lubronzhan --- server/storage/mvcc/key_index.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/storage/mvcc/key_index.go b/server/storage/mvcc/key_index.go index e19068f9c..07ad930c1 100644 --- a/server/storage/mvcc/key_index.go +++ b/server/storage/mvcc/key_index.go @@ -29,7 +29,7 @@ var ( // keyIndex stores the revisions of a key in the backend. // Each keyIndex has at least one key generation. // Each generation might have several key versions. -// Tombstone on a key appends an tombstone version at the end +// Tombstone on a key appends a tombstone version at the end // of the current generation and creates a new empty generation. // Each version of a key has an index pointing to the backend. //