File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 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]) {
3333 known_good_stable_sort:: sort ( known_good_sorted_vec. as_mut_slice ( ) ) ;
3434
3535 if is_small_test {
36- eprintln ! ( "Orginal : {:?}" , v_orig) ;
36+ eprintln ! ( "Original : {:?}" , v_orig) ;
3737 eprintln ! ( "Expected: {:?}" , known_good_sorted_vec) ;
3838 eprintln ! ( "Got: {:?}" , v) ;
3939 } else {
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ macro_rules! pow_bench_template {
2525 let mut exp_iter = black_box( & exp_array) . into_iter( ) ;
2626
2727 ( 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
2929 // inside of the loop, so we call a custom expression every cycle
3030 // rather than iter::repeat(CONST)
3131 let base: IntType = $base_macro!( base_iter) ;
You can’t perform that action at this time.
0 commit comments