Skip to content

Commit bb21cbf

Browse files
committed
Fix spellings
1 parent caccf83 commit bb21cbf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/benchmark/relative_speed.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ fn compute_relative_speeds<'a>(
5454
};
5555

5656
// https://en.wikipedia.org/wiki/Propagation_of_uncertainty#Example_formulas
57-
// Covariance asssumed to be 0, i.e. variables are assumed to be independent
57+
// Covariance assumed to be 0, i.e. variables are assumed to be independent
5858
let ratio_stddev = match (result.stddev, reference.stddev) {
5959
(Some(result_stddev), Some(fastest_stddev)) => Some(
6060
ratio

src/cli.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ fn build_command() -> Command {
155155
string '{VAR}' in each command by the current parameter value.\n\n \
156156
Example: hyperfine -P threads 1 8 'make -j {threads}'\n\n\
157157
This performs benchmarks for 'make -j 1', 'make -j 2', …, 'make -j 8'.\n\n\
158-
To have the value increase following different patterns, use shell arithmetics.\n\n \
158+
To have the value increase following different patterns, use shell arithmetic.\n\n \
159159
Example: hyperfine -P size 0 3 'sleep $((2**{size}))'\n\n\
160160
This performs benchmarks with power of 2 increases: 'sleep 1', 'sleep 2', 'sleep 4', …\n\
161161
The exact syntax may vary depending on your shell and OS."

0 commit comments

Comments
 (0)