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

os: vfmt all of os .v files, add it to v test-cleancode with no exceptions

This commit is contained in:
Delyan Angelov
2020-12-16 14:15:11 +02:00
parent 6a74058190
commit 1ee57649b9
4 changed files with 29 additions and 33 deletions

View File

@@ -26,8 +26,7 @@ pub fn option(args []string, param string, def string) string {
for arg in args {
if found {
return arg
}
else if param == arg {
} else if param == arg {
found = true
}
}