aboutsummaryrefslogtreecommitdiff
path: root/src/dbwrapper.cpp
diff options
context:
space:
mode:
authorpracticalswift <practicalswift@users.noreply.github.com>2018-08-14 09:27:30 +0200
committerpracticalswift <practicalswift@users.noreply.github.com>2018-09-04 13:11:26 +0200
commitada356208e153e088c729c102d5d79c9c9d66f1a (patch)
treef379a875fbf5208de2fe211c0f5c343bc1bc51f0 /src/dbwrapper.cpp
parent59ecacfc84af13e5a1608e7d970315d07dcb0269 (diff)
downloadbitcoin-ada356208e153e088c729c102d5d79c9c9d66f1a.tar.xz
Fix typos reported by codespell
Diffstat (limited to 'src/dbwrapper.cpp')
-rw-r--r--src/dbwrapper.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dbwrapper.cpp b/src/dbwrapper.cpp
index f5fb715800..58d8cc2c9d 100644
--- a/src/dbwrapper.cpp
+++ b/src/dbwrapper.cpp
@@ -78,7 +78,7 @@ static void SetMaxOpenFiles(leveldb::Options *options) {
// do not interfere with select() loops. On 64-bit Unix hosts this value is
// also OK, because up to that amount LevelDB will use an mmap
// implementation that does not use extra file descriptors (the fds are
- // closed after being mmaped).
+ // closed after being mmap'ed).
//
// Increasing the value beyond the default is dangerous because LevelDB will
// fall back to a non-mmap implementation when the file count is too large.