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

vdoc: fix sorting + other minor improvements

This commit is contained in:
Ned Palacios
2020-06-19 16:36:45 +08:00
committed by GitHub
parent 770132ff37
commit 5ff7d07138
8 changed files with 270 additions and 180 deletions

View File

@ -123,7 +123,7 @@ pub fn (ftp FTP) login(user, passwd string) bool {
}
return false
}
mut code, mut data := ftp.read()
mut code, _ := ftp.read()
if code == logged_in {
return true
}