summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Costan <pwnall@chromium.org>2022-01-10 17:55:39 +0000
committerVictor Costan <pwnall@chromium.org>2022-01-10 17:55:39 +0000
commitec4e3a5cb3e9dd7740520267eab959e00317d711 (patch)
tree9f1bd0a68f6ff1af8740548751563a411b115acb
parent8ccb79b57e877cb28b751d74e3e50bb4f8184997 (diff)
parentf2dae4e74ad3fb5f19722e4df29deddb85ff0872 (diff)
downloadleveldb-ec4e3a5cb3e9dd7740520267eab959e00317d711.tar.gz
Merge pull request #747 from zltl:patch-1
PiperOrigin-RevId: 420778907
-rw-r--r--util/cache.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/cache.cc b/util/cache.cc
index ad1e9a2..fc3d154 100644
--- a/util/cache.cc
+++ b/util/cache.cc
@@ -54,7 +54,7 @@ struct LRUHandle {
char key_data[1]; // Beginning of key
Slice key() const {
- // next_ is only equal to this if the LRU handle is the list head of an
+ // next is only equal to this if the LRU handle is the list head of an
// empty list. List heads never have meaningful keys.
assert(next != this);