helper: comment change

This commit is contained in:
2026-04-16 18:35:59 +01:00
parent 15efa4e1b5
commit e327d61a18

View File

@@ -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<T: Ord, const N: usize>(mut xs: [T; N]) -> [T; N] {
xs.sort();