toml: small clarification on utf8_max const (#12320)

pull/12314/head
Larpon 2021-10-27 15:41:22 +02:00 committed by GitHub
parent 943a807d30
commit 462d097bf5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -12,8 +12,8 @@ import encoding.utf8
pub const allowed_basic_escape_chars = [`u`, `U`, `b`, `t`, `n`, `f`, `r`, `"`, `\\`] pub const allowed_basic_escape_chars = [`u`, `U`, `b`, `t`, `n`, `f`, `r`, `"`, `\\`]
// utf8_max is the value of hex2int('10FFFF') // utf8_max is the largest inclusive value of the Unicodes scalar value ranges.
const utf8_max = 1114111 const utf8_max = 0x10FFFF
// Checker checks a tree of TOML `ast.Value`'s for common errors. // Checker checks a tree of TOML `ast.Value`'s for common errors.
pub struct Checker { pub struct Checker {