From e327d61a1852f5fcf68f7ddae358cc831e8e33d5 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Thu, 16 Apr 2026 18:35:59 +0100 Subject: [PATCH] helper: comment change --- src/helper.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helper.rs b/src/helper.rs index 858a7f0..18b5298 100644 --- a/src/helper.rs +++ b/src/helper.rs @@ -1,4 +1,4 @@ -/// Given an array of arguments, return them sorted. Best utilised with array +/// Given an array of items, return them sorted. Best utilised with array /// destructuring. pub fn ordered(mut xs: [T; N]) -> [T; N] { xs.sort();