From: Mayank Agarwal Date: Mon, 19 Aug 2013 21:27:19 +0000 (-0700) Subject: Correct documentation for no_block_cache in leveldb/options.h X-Git-Tag: v2.2~3 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=28e6fe5e9f999bffc6b2ace2d84809782c76e592;p=rocksdb.git Correct documentation for no_block_cache in leveldb/options.h Summary: false shoudl have been true in comment Test Plan: visual --- diff --git a/include/leveldb/options.h b/include/leveldb/options.h index 63899d8f7..dee174ff2 100644 --- a/include/leveldb/options.h +++ b/include/leveldb/options.h @@ -413,7 +413,7 @@ struct Options { // The default value is MAX_INT so that roll-over does not take place. uint64_t max_manifest_file_size; - // Disable block cache. If this is set to false, + // Disable block cache. If this is set to true, // then no block cache should be used, and the block_cache should // point to a nullptr object. bool no_block_cache;