File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ fn check_is_sorted<T: Ord + Clone + Debug, S: Sort>(v: &mut [T]) {
33
33
known_good_stable_sort:: sort ( known_good_sorted_vec. as_mut_slice ( ) ) ;
34
34
35
35
if is_small_test {
36
- eprintln ! ( "Orginal : {:?}" , v_orig) ;
36
+ eprintln ! ( "Original : {:?}" , v_orig) ;
37
37
eprintln ! ( "Expected: {:?}" , known_good_sorted_vec) ;
38
38
eprintln ! ( "Got: {:?}" , v) ;
39
39
} else {
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ macro_rules! pow_bench_template {
25
25
let mut exp_iter = black_box( & exp_array) . into_iter( ) ;
26
26
27
27
( 0 ..ITERATIONS ) . fold( ( 0 as IntType , false ) , |acc, _| {
28
- // Sometimes constants don't propogate all the way to the
28
+ // Sometimes constants don't propagate all the way to the
29
29
// inside of the loop, so we call a custom expression every cycle
30
30
// rather than iter::repeat(CONST)
31
31
let base: IntType = $base_macro!( base_iter) ;
You can’t perform that action at this time.
0 commit comments