diff options
author | Chris Mumford <cmumford@google.com> | 2019-04-11 12:25:12 -0700 |
---|---|---|
committer | Chris Mumford <cmumford@google.com> | 2019-04-12 00:16:41 -0700 |
commit | 71ed7c401ec1b1e38d6f7cb9eb2fcff93c24d1f1 (patch) | |
tree | b79f944ffdce752bd43be55acd8f59261bc7e05b /db | |
parent | 09fa8868dbe0cb2701f0560c59ebb63cc17f1271 (diff) | |
download | leveldb-71ed7c401ec1b1e38d6f7cb9eb2fcff93c24d1f1.tar.gz |
Fixed typo in comment in version_set.h.
Flagged by presubmit check.
PiperOrigin-RevId: 243118632
Diffstat (limited to 'db')
-rw-r--r-- | db/version_set.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/db/version_set.h b/db/version_set.h index 77b9895..0beae4d 100644 --- a/db/version_set.h +++ b/db/version_set.h @@ -375,7 +375,7 @@ class Compaction { // Each compaction reads inputs from "level_" and "level_+1" std::vector<FileMetaData*> inputs_[2]; // The two sets of inputs - // State used to check for number of of overlapping grandparent files + // State used to check for number of overlapping grandparent files // (parent == level_ + 1, grandparent == level_ + 2) std::vector<FileMetaData*> grandparents_; size_t grandparent_index_; // Index in grandparent_starts_ |