From a06fdc18062bb7d9e51384eb92da393ee1aa28ad Mon Sep 17 00:00:00 2001 From: vinDelphini Date: Sun, 25 Jan 2026 03:37:57 +0530 Subject: [PATCH] Fix 'the the' typo in library/core/src/array/iter.rs --- library/core/src/array/iter.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/array/iter.rs b/library/core/src/array/iter.rs index 1c1f4d78c03f..cd2a9e00b5a6 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) }