We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50752d1 commit 0c33dbaCopy full SHA for 0c33dba
core/tests/array.rs
@@ -663,7 +663,7 @@ fn array_mixed_equality_nans() {
663
664
#[test]
665
fn array_into_iter_fold() {
666
- // Strings to help MIRI catch if we double-free or something
+ // Strings to help Miri catch if we double-free or something
667
let a = ["Aa".to_string(), "Bb".to_string(), "Cc".to_string()];
668
let mut s = "s".to_string();
669
a.into_iter().for_each(|b| s += &b);
@@ -679,7 +679,7 @@ fn array_into_iter_fold() {
679
680
681
fn array_into_iter_rfold() {
682
683
684
685
a.into_iter().rev().for_each(|b| s += &b);
0 commit comments