diff --git a/library/core/src/array/iter.rs b/library/core/src/array/iter.rs index 1c1f4d78c03fd..cd2a9e00b5a6e 100644 --- a/library/core/src/array/iter.rs +++ b/library/core/src/array/iter.rs @@ -66,7 +66,7 @@ impl IntoIterator for [T; N] { // FIXME: If normal `transmute` ever gets smart enough to allow this // directly, use it instead of `transmute_unchecked`. let data: [MaybeUninit; N] = unsafe { transmute_unchecked(self) }; - // SAFETY: The original array was entirely initialized and the the alive + // SAFETY: The original array was entirely initialized and the alive // range we're passing here represents that fact. let inner = unsafe { InnerSized::new_unchecked(IndexRange::zero_to(N), data) }; IntoIter { inner: ManuallyDrop::new(inner) }