From b0c378e2a74949b9f224226f70a2cff1fc4c2098 Mon Sep 17 00:00:00 2001 From: xixishidibei Date: Fri, 11 Apr 2025 11:46:34 +0800 Subject: [PATCH] chore: fix cargo clippy warning Signed-off-by: xixishidibei --- src/arr.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arr.rs b/src/arr.rs index 1b5a6f6b4..c87d0879c 100644 --- a/src/arr.rs +++ b/src/arr.rs @@ -19,7 +19,7 @@ /// # NOTES AND LIMITATIONS /// * As of `generic-array 1.0`, [`From`]/[`from_array`](crate::GenericArray::from_array) can be used directly for a wide range of regular arrays. /// * The `[T; N: ArrayLength]` and `[T; usize]` explicit forms are limited to `Copy` values. Use -/// [`GenericArray::generate(|| value.clone())`](crate::GenericSequence::generate) for non-`Copy` items. +/// [`GenericArray::generate(|| value.clone())`](crate::GenericSequence::generate) for non-`Copy` items. /// * The `[T; usize]` explicit and `[0, 1, 2, 3]` implicit forms are limited to lengths supported by [`Const`](typenum::Const) #[macro_export] macro_rules! arr {