From 014dce1e03e2c80fc8a5b2a5f3d42314a9d2ea5e Mon Sep 17 00:00:00 2001 From: SAY-5 Date: Sun, 10 May 2026 15:02:54 -0700 Subject: [PATCH] docs(split): correct order to first, middle, last Signed-off-by: SAY-5 --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 07465bb..a1a83a7 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -529,8 +529,8 @@ impl NonEmpty { (&self.head, &self.tail) } - /// Deconstruct a `NonEmpty` into its first, last, and - /// middle elements, in that order. + /// Deconstruct a `NonEmpty` into its first, middle, and + /// last elements, in that order. /// /// If there is only one element then last is `None`. ///