Fix typo seperated -> separated

This commit is contained in:
Alain Martin 2020-05-22 21:35:37 +02:00 committed by David Peter
parent 7236531409
commit b97ecf01c2
2 changed files with 2 additions and 2 deletions

View File

@ -107,7 +107,7 @@ This performs benchmarks for 'sleep 0.3', 'sleep 0.5' and 'sleep 0.7'.
.HP
\fB\-L\fR, \fB\-\-parameter\-list\fR \fIvar\fP \fIvalues\fP
.IP
Perform benchmark runs for each value in the comma\-seperated list of \fIvalues\fP.
Perform benchmark runs for each value in the comma\-separated list of \fIvalues\fP.
Replaces the string '{\fIvar\fP}' in each command by the current parameter value.
.IP
.RS

View File

@ -138,7 +138,7 @@ fn build_app() -> App<'static, 'static> {
.value_names(&["VAR", "VALUES"])
.conflicts_with_all(&["parameter-scan", "parameter-step-size"])
.help(
"Perform benchmark runs for each value in the comma-seperated list VALUES. \
"Perform benchmark runs for each value in the comma-separated list VALUES. \
Replaces the string '{VAR}' in each command by the current parameter value\
.\n\nExample: hyperfine -L compiler gcc,clang '{compiler} -O2 main.cpp'\n\n\
This performs benchmarks for 'gcc -O2 main.cpp' and 'clang -O2 main.cpp'.",