arrays: rephrase doc string (#14205)

master
Atom 2022-04-28 14:17:53 +04:00 committed by GitHub
parent 4538efd8f4
commit a225b25117
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ pub fn min<T>(a []T) ?T {
return val
}
// max returns the maximum the maximum value in the array
// max returns the maximum value in the array
// Example: arrays.max([1,2,3,0,9]) // => 9
pub fn max<T>(a []T) ?T {
if a.len == 0 {