Update draft-marchan-kdl2.md

Co-authored-by: Tab Atkins Jr. <jackalmage@gmail.com>
This commit is contained in:
Kat Marchán 2025-04-17 11:51:17 -07:00 committed by GitHub
parent 3b9436361a
commit a4b1053d15
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 0 deletions

View File

@ -303,6 +303,9 @@ with any of the following patterns, all of which MUST yield syntax errors
* `[eE][+-]?[0-9]` (to disambiguate exponentials)
* `[xX][a-fA-F]` (to disambiguate hexadecimals)
For example, `10,000` is illegal, as is `10u16`. `10e0n` is illegal, but `10e0` is a legal
*decimal number using exponential syntax*, __not__ equivalent to `(e0)10`.
All other ({{identifier-string}})s can be safely appended to decimal numbers, so
long as the decimal does not include an exponential component.