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

all: replace generic '<>' with '[]' in error messages and comments (#16571)

This commit is contained in:
yuyi
2022-12-02 15:22:48 +08:00
committed by GitHub
parent cbe64cb543
commit f16722596c
28 changed files with 70 additions and 71 deletions

View File

@@ -1986,7 +1986,7 @@ fn (t Tree) asm_io(node ast.AsmIO) &Node {
}
// do not support yet by vlang
// fn (t Tree) array_node1<T>(nodes []T, method_name string) &Node {
// fn (t Tree) array_node1[T](nodes []T, method_name string) &Node {
// mut arr := new_array()
// // call method dynamically, V do not support yet
@@ -2009,7 +2009,7 @@ fn (t Tree) asm_io(node ast.AsmIO) &Node {
// }
// do not support yet by vlang
// fn (t Tree) array_node2<T>(nodes []T) &Node {
// fn (t Tree) array_node2[T](nodes []T) &Node {
// mut arr := new_array()
// for node in nodes {