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

all: remove redundant parentheses in if statements

This commit is contained in:
Alexey
2020-03-29 11:08:42 +03:00
committed by GitHub
parent e09447d011
commit a333ac1888
13 changed files with 16 additions and 18 deletions

View File

@ -148,7 +148,7 @@ ${flag.SPACE}to script it/run it in a restrictive vps/docker.
context.show_help = fp.bool('help', `h`, false, 'Show this help screen.')
context.verbose = fp.bool('verbose', `v`, false, 'Be more verbose.')
if (context.show_help) {
if context.show_help {
println(fp.usage())
exit(0)
}