toml-lang / toml

Tom's Obvious, Minimal Language
https://toml.io
MIT License
19.45k stars 847 forks source link

Clarify whether hex digits can be lowercase or not #935

Closed autumnull closed 1 year ago

autumnull commented 1 year ago

From the prose spec:

Hex values are case-insensitive.

From the ABNF grammar:

HEXDIG = DIGIT / "A" / "B" / "C" / "D" / "E" / "F"
marzer commented 1 year ago

ABNFs aren't case sensitive. Lowercase hex digits are fine.

autumnull commented 1 year ago

you're right, my bad