From ae2168838e74ec12ff3fbdfefa9f1bf76b14321d Mon Sep 17 00:00:00 2001 From: Siying Dong Date: Tue, 3 May 2022 11:18:15 -0700 Subject: [PATCH] Update options.h --- include/rocksdb/options.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/rocksdb/options.h b/include/rocksdb/options.h index 8b5fb2f93..a554fc737 100644 --- a/include/rocksdb/options.h +++ b/include/rocksdb/options.h @@ -768,7 +768,7 @@ struct DBOptions { // Allow the OS to mmap file for reading sst tables. // Not recommended for 32-bit OS. // When the option is set to true and compression is disabled, the blocks - // will not be copied and will be read directly from the mmaped memory + // will not be copied and will be read directly from the mmap-ed memory // area, and the block will not be inserted into the block cache. However, // checksums will still be checked if ReadOptions.verify_checksums is set // to be true. It means a checksum check every time a block is read, more