Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/monad/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ try {
cli.add_option(
"--db",
dbname_paths,
"A comma-separated list of previously created database paths. You can "
"A space-separated list of previously created database paths. You can "
"configure the storage pool with one or more files/devices. If no "
"value is passed, the replay will run with an in-memory triedb");
cli.add_option(
Expand Down
2 changes: 1 addition & 1 deletion cmd/monad_cli.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -805,7 +805,7 @@ int main(int argc, char *argv[])
cli.add_option(
"--db",
dbname_paths,
"A comma-separated list of previously created database paths")
"A space-separated list of previously created database paths")
->required();
cli.add_option(
"--sq-thread-cpu,--sq_thread_cpu",
Expand Down
Loading