mirror of
https://github.com/vlang/v.git
synced 2025-09-15 23:42:28 +03:00
all: fix typos (#21089)
This commit is contained in:
parent
9ad84ddc21
commit
f77bb32044
193 changed files with 403 additions and 402 deletions
|
@ -918,7 +918,7 @@ fn test_i64_sort() {
|
|||
fn test_sort_index_expr() {
|
||||
mut f := [[i64(50), 48], [i64(15)], [i64(1)], [i64(79)], [i64(38)],
|
||||
[i64(0)], [i64(27)]]
|
||||
// TODO This currently gives "indexing pointer" error without unsafe
|
||||
// TODO: This currently gives "indexing pointer" error without unsafe
|
||||
unsafe {
|
||||
f.sort(a[0] < b[0])
|
||||
}
|
||||
|
|
|
@ -670,7 +670,7 @@ fn test_repeat() {
|
|||
assert s2.repeat(5) == s2
|
||||
assert s2.repeat(1) == s2
|
||||
assert s2.repeat(0) == s2
|
||||
// TODO Add test for negative values
|
||||
// TODO: Add test for negative values
|
||||
}
|
||||
|
||||
fn test_starts_with() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue