[ABNF] Move a rule a bit within the file.

No changes to rules.

Just putting two rules close that are somewhat related (as they are used to
define comments).
This commit is contained in:
Alessandro Coglio 2021-05-12 19:11:31 -07:00
parent 7e378545e0
commit 566365e501

View File

@ -335,6 +335,9 @@ single-quote = %x27 ; '
not-star = %x0-29 / %x2B-10FFFF ; anything but *
not-star-or-slash = %x0-29 / %x2B-2E / %x30-10FFFF
; anything but * or /
not-line-feed-or-carriage-return = %x0-9 / %xB-C / %xE-10FFFF
; anything but <LF> or <CR>
@ -344,9 +347,6 @@ not-double-quote-or-backslash = %x0-21 / %x23-5B / %x5D-10FFFF
not-single-quote-or-backslash = %x0-26 / %x28-5B / %x5D-10FFFF
; anything but ' or \
not-star-or-slash = %x0-29 / %x2B-2E / %x30-10FFFF
; anything but * or /
; Lines in Leo may be terminated via
; a single carriage return,
; a line feed,