Skip to content

Commit 0c33dba

Browse files
committed
MIRI -> Miri
1 parent 50752d1 commit 0c33dba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/tests/array.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -663,7 +663,7 @@ fn array_mixed_equality_nans() {
663663

664664
#[test]
665665
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
667667
let a = ["Aa".to_string(), "Bb".to_string(), "Cc".to_string()];
668668
let mut s = "s".to_string();
669669
a.into_iter().for_each(|b| s += &b);
@@ -679,7 +679,7 @@ fn array_into_iter_fold() {
679679

680680
#[test]
681681
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
683683
let a = ["Aa".to_string(), "Bb".to_string(), "Cc".to_string()];
684684
let mut s = "s".to_string();
685685
a.into_iter().rev().for_each(|b| s += &b);

0 commit comments

Comments
 (0)