mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
vlib: run vfmt over vlib files, so that v doc -m vlib/
can run without warnings
This commit is contained in:
@ -165,7 +165,7 @@ fn pretty_description(s string, indent_len int) string {
|
||||
return acc.str()
|
||||
}
|
||||
|
||||
fn max(a, b int) int {
|
||||
fn max(a int, b int) int {
|
||||
res := if a > b { a } else { b }
|
||||
return res
|
||||
}
|
||||
|
Reference in New Issue
Block a user