Skip to content

Commit

Permalink
fix command line argument description for --rlimit and --num-threads
Browse files Browse the repository at this point in the history
  • Loading branch information
utaal committed Jul 26, 2023
1 parent b79d934 commit 94dee63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/rust_verify/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ pub fn parse_args_with_imports(
opts.optopt(
"",
OPT_RLIMIT,
format!("Set SMT resource limit (roughly in seconds). Default: {} (available parallelism on this system).", DEFAULT_RLIMIT_SECS)
format!("Set SMT resource limit (roughly in seconds). Default: {}.", DEFAULT_RLIMIT_SECS)
.as_str(),
"INTEGER",
);
Expand Down Expand Up @@ -263,7 +263,7 @@ pub fn parse_args_with_imports(
opts.optopt(
"",
OPT_NUM_THREADS,
format!("Number of threads to use for verification. Default: {}.", default_num_threads)
format!("Number of threads to use for verification. Default: {} (available parallelism on this system).", default_num_threads)
.as_str(),
"INTEGER",
);
Expand Down

0 comments on commit 94dee63

Please sign in to comment.