From f56900b137313088272b4f556901ebbee38185c9 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Thu, 15 Feb 2024 15:37:44 -0700 Subject: [PATCH] Add `generic-array` migration guide for `Concat` and `Split` --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index 5e9ee61..04c5865 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -77,6 +77,7 @@ //! - Replace `generic_array` with `hybrid_array` //! - Replace `GenericArray` with `Array` //! - Replace `ArrayLength` with `ArraySize` +//! - Replace usages of the `Concat` and `Split` traits with [`Array::concat`] and [`Array::split`] //! - Replace `>::ArrayType` with `::ArrayType` //! - Replace usages of the `arr![N; A, B, C]` macro with `Array([A, B, C])` //!