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();