From af6248d8b8bf9454a5b00f87d0c4acb026b897cc Mon Sep 17 00:00:00 2001 From: Islam AbdelRahman Date: Wed, 22 Jun 2016 18:28:38 -0700 Subject: [PATCH] Fix max_bytes_for_level_base comment Summary: Fix max_bytes_for_level_base comment Test Plan: none Reviewers: yhchiang, sdong Reviewed By: sdong Subscribers: andrewkr, dhruba Differential Revision: https://reviews.facebook.net/D59955 --- include/rocksdb/options.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/rocksdb/options.h b/include/rocksdb/options.h index 501d99aed..f36912dbd 100644 --- a/include/rocksdb/options.h +++ b/include/rocksdb/options.h @@ -450,8 +450,8 @@ struct ColumnFamilyOptions { // (max_bytes_for_level_base) * (max_bytes_for_level_multiplier ^ (L-1)) // For example, if max_bytes_for_level_base is 200MB, and if // max_bytes_for_level_multiplier is 10, total data size for level-1 - // will be 2GB, total file size for level-2 will be 20GB, - // and total file size for level-3 will be 200GB. + // will be 200MB, total file size for level-2 will be 2GB, + // and total file size for level-3 will be 20GB. // // Default: 256MB. //