From 2b925ccb435efcfdeea99b8d4675c23ef6d13b32 Mon Sep 17 00:00:00 2001 From: Yueh-Hsuan Chiang Date: Tue, 13 Oct 2015 17:23:40 -0700 Subject: [PATCH] Correct the comments in db/internal_stats.h Summary: Correct the comments in db/internal_stats.h Test Plan: no code change Reviewers: igor, IslamAbdelRahman, sdong Reviewed By: sdong Subscribers: dhruba, leveldb Differential Revision: https://reviews.facebook.net/D48675 --- db/internal_stats.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/db/internal_stats.h b/db/internal_stats.h index eeb226e5e..217394235 100644 --- a/db/internal_stats.h +++ b/db/internal_stats.h @@ -49,10 +49,10 @@ enum DBPropertyType : uint32_t { // memtable. kNumEntriesInImmutableMemtable, // Return sum of number of entries in all // the immutable mem tables. - kNumDeletesInMutableMemtable, // Return number of entries in the mutable - // memtable. - kNumDeletesInImmutableMemtable, // Return sum of number of deletes in all - // the immutable mem tables. + kNumDeletesInMutableMemtable, // Return number of deletion entries in the + // mutable memtable. + kNumDeletesInImmutableMemtable, // Return the total number of deletion + // entries in all the immutable mem tables. kEstimatedNumKeys, // Estimated total number of keys in the database. kEstimatedUsageByTableReaders, // Estimated memory by table readers. kIsFileDeletionEnabled, // Equals disable_delete_obsolete_files_,