File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -663,7 +663,7 @@ fn array_mixed_equality_nans() {
663
663
664
664
#[ test]
665
665
fn array_into_iter_fold ( ) {
666
- // Strings to help MIRI catch if we double-free or something
666
+ // Strings to help Miri catch if we double-free or something
667
667
let a = [ "Aa" . to_string ( ) , "Bb" . to_string ( ) , "Cc" . to_string ( ) ] ;
668
668
let mut s = "s" . to_string ( ) ;
669
669
a. into_iter ( ) . for_each ( |b| s += & b) ;
@@ -679,7 +679,7 @@ fn array_into_iter_fold() {
679
679
680
680
#[ test]
681
681
fn array_into_iter_rfold ( ) {
682
- // Strings to help MIRI catch if we double-free or something
682
+ // Strings to help Miri catch if we double-free or something
683
683
let a = [ "Aa" . to_string ( ) , "Bb" . to_string ( ) , "Cc" . to_string ( ) ] ;
684
684
let mut s = "s" . to_string ( ) ;
685
685
a. into_iter ( ) . rev ( ) . for_each ( |b| s += & b) ;
You can’t perform that action at this time.
0 commit comments