mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
all: remove redundant parentheses in if
statements
This commit is contained in:
parent
e09447d011
commit
a333ac1888
13 changed files with 16 additions and 18 deletions
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue