mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-18 23:02:35 +03:00
[ABNF] fix the code point range in the format string grammar, along with a note on what the code points mean
This commit is contained in:
parent
3840e04f00
commit
e6752d67a0
@ -821,9 +821,13 @@ file = *declaration
|
||||
Format String Grammar
|
||||
---------------------
|
||||
|
||||
The code points mentioned in this grammar represent
|
||||
the elements of a Leo format string already parsed,
|
||||
after escapes have been processed.
|
||||
|
||||
<a name="not-brace"></a>
|
||||
```abnf
|
||||
not-brace = %x0-7A / %x7C / %x7E-D7FF / %xE000-10FFFF ; anything but { or }
|
||||
not-brace = %x0-7A / %x7C / %x7E-10FFFF ; anything but { or }
|
||||
```
|
||||
|
||||
<a name="format-string-container"></a>
|
||||
|
@ -329,7 +329,11 @@ file = *declaration
|
||||
; Format String Grammar
|
||||
; ---------------------
|
||||
|
||||
not-brace = %x0-7A / %x7C / %x7E-D7FF / %xE000-10FFFF ; anything but { or }
|
||||
; The code points mentioned in this grammar represent
|
||||
; the elements of a Leo format string already parsed,
|
||||
; after escapes have been processed.
|
||||
|
||||
not-brace = %x0-7A / %x7C / %x7E-10FFFF ; anything but { or }
|
||||
|
||||
format-string-container = "{}"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user