Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: typo nuber to number #145

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/CryptoNoteCore/DataBaseConfig.cpp
Expand Up @@ -36,7 +36,7 @@ const uint16_t DEFAULT_BACKGROUND_THREADS_COUNT = 2;

const uint64_t MEGABYTE = 1024 * 1024;

const command_line::arg_descriptor<uint16_t> argBackgroundThreadsCount = { "db-threads", "Nuber of background threads used for compaction and flush", DEFAULT_BACKGROUND_THREADS_COUNT};
const command_line::arg_descriptor<uint16_t> argBackgroundThreadsCount = { "db-threads", "Number of background threads used for compaction and flush", DEFAULT_BACKGROUND_THREADS_COUNT};
const command_line::arg_descriptor<uint32_t> argMaxOpenFiles = { "db-max-open-files", "Number of open files that can be used by the DB", DEFAULT_MAX_OPEN_FILES};
const command_line::arg_descriptor<uint64_t> argWriteBufferSize = { "db-write-buffer-size", "Size of data base write buffer in megabytes", WRITE_BUFFER_MB_DEFAULT_SIZE};
const command_line::arg_descriptor<uint64_t> argReadCacheSize = { "db-read-cache-size", "Size of data base read cache in megabytes", READ_BUFFER_MB_DEFAULT_SIZE};
Expand Down