[ABNF] remove extra comment on not-brace

This commit is contained in:
Eric McCarthy 2022-03-24 17:29:06 -07:00
parent a96e44c49b
commit 45c731f74d
2 changed files with 4 additions and 4 deletions

View File

@ -824,8 +824,8 @@ Format String Grammar
<a name="not-brace"></a>
```abnf
not-brace = %x0-7A / %x7C / %x7E-10FFFF ; anything but { or }
; codes permitted in string after escapes processed, except braces
not-brace = %x0-7A / %x7C / %x7E-10FFFF
; codes permitted in string after escapes processed, except { or }
```
<a name="format-string-container"></a>

View File

@ -327,8 +327,8 @@ file = *declaration
; Format String Grammar
; ---------------------
not-brace = %x0-7A / %x7C / %x7E-10FFFF ; anything but { or }
; codes permitted in string after escapes processed, except braces
not-brace = %x0-7A / %x7C / %x7E-10FFFF
; codes permitted in string after escapes processed, except { or }
format-string-container = "{}"