1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

builtin: fix typo (#8747)

This commit is contained in:
Quix 2021-02-15 10:54:07 -05:00 committed by GitHub
parent 6a21b8cc8b
commit 486bf8517f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -600,7 +600,7 @@ fn compare_floats_reverse(a &f64, b &f64) int {
return 0
}
// sort sorts array of int in place in ascending order.
// sort sorts an array of int in place in ascending order.
pub fn (mut a []int) sort() {
a.sort_with_compare(compare_ints)
}