Update vlib/toml/scanner/scanner.v

Co-authored-by: JalonSolov <JalonSolov@gmail.com>
pull/13967/head
Delyan Angelov 2022-04-12 19:05:30 +03:00 committed by GitHub
parent f8ae042eb9
commit eb1de2ac4e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ import toml.util
pub const ( pub const (
digit_extras = [`_`, `.`, `x`, `o`, `b`, `e`, `E`] digit_extras = [`_`, `.`, `x`, `o`, `b`, `e`, `E`]
end_of_text = 4294967295 end_of_text = u32(~0)
) )
// Scanner contains the necessary fields for the state of the scan process. // Scanner contains the necessary fields for the state of the scan process.