mirror of
https://github.com/vlang/v.git
synced 2025-09-13 22:42:26 +03:00
all: fix typos (#21089)
This commit is contained in:
parent
9ad84ddc21
commit
f77bb32044
193 changed files with 403 additions and 402 deletions
|
@ -85,7 +85,7 @@ pub fn merge[T](a []T, b []T) []T {
|
|||
mut ia := 0
|
||||
mut ib := 0
|
||||
mut j := 0
|
||||
// TODO efficient approach to merge_desc where: a[ia] >= b[ib]
|
||||
// TODO: efficient approach to merge_desc where: a[ia] >= b[ib]
|
||||
for ia < a.len && ib < b.len {
|
||||
if a[ia] <= b[ib] {
|
||||
m[j] = a[ia]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue