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

all: fix formating Foo<A,B> to Foo<A, B> (#11225)

This commit is contained in:
yuyi
2021-08-18 22:17:21 +08:00
committed by GitHub
parent 881510e7ce
commit 3d22dc1608
9 changed files with 11 additions and 11 deletions

View File

@@ -543,7 +543,7 @@ pub fn (mut p Parser) parse_generic_inst_type(name string) ast.Type {
break
}
p.next()
bs_name += ','
bs_name += ', '
bs_cname += '_'
}
p.check(.gt)