toml: remove obsolete comment from checker (#12626)

pull/12638/head
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
1 changed files with 1 additions and 3 deletions

View File

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