From ad11b79edebdee962a90ebb5ff2dc1d2890350d9 Mon Sep 17 00:00:00 2001 From: Sai Asish Y Date: Sun, 10 May 2026 22:02:54 +0000 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`. ///