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

vet: simplify fn name identifying, add warning for incomplete documentation (#8227)

This commit is contained in:
Larpon
2021-01-21 12:46:50 +01:00
committed by GitHub
parent f399c17e3d
commit ee663364de
3 changed files with 29 additions and 22 deletions

View File

@@ -47,3 +47,9 @@ pub fn (f Foo) fooo() string {
// not using convention
return f.fo()
}
// boo
pub fn (f Foo) boo() string {
// Incomplete doc
return f.fo()
}