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

fmt: change [1,2,3]!! to [1,2,3]! (#8081)

This commit is contained in:
yuyi
2021-01-13 15:32:17 +08:00
committed by GitHub
parent ac85257ea0
commit 7458b699d0
4 changed files with 4 additions and 4 deletions

View File

@@ -68,7 +68,7 @@ fn (context Context) file2v(bname string, fbytes []byte, bn_max int) string {
sb.write('$b, ')
}
}
sb.write(']!!\n')
sb.write(']!\n')
return sb.str()
}