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

toml: remove obsolete comment from checker (#12626)

This commit is contained in:
Larpon 2021-11-30 18:40:31 +01:00 committed by GitHub
parent 547f326f33
commit 6f193c4300
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,9 +48,7 @@ fn (c Checker) visit(value &ast.Value) ? {
ast.Time {
c.check_time(value) ?
}
else {
// TODO add more checks to make BurntSushi/toml-test invalid TOML pass
}
else {}
}
}