Repair typos (thanks to Gregg Irwin for pointing these out)

This commit is contained in:
Tony Garnock-Jones 2022-02-23 09:36:13 +01:00
parent fad9111241
commit daa6b8f931
1 changed files with 2 additions and 2 deletions

View File

@ -383,7 +383,7 @@ The third is as a sequence of
with whitespace and surrounded by `#[` and `]`. Plain and URL-safe
Base64 characters are allowed.
ByteString =/ "#[" *(ws / base64char) ws "]" /
ByteString =/ "#[" *(ws / base64char) ws "]"
base64char = %x41-5A / %x61-7A / %x30-39 / "+" / "/" / "-" / "_" / "="
A `Symbol` may be written in a “bare” form[^cf-sexp-token] so long as
@ -461,7 +461,7 @@ interpreted as comments associated with that value. Comments are
sufficiently common that special syntax exists for them.
Value =/ ws
";" *(%x00-09 / %x0B-0C / %x0E-%x10FFFF) newline
";" *(%x00-09 / %x0B-0C / %x0E-10FFFF) newline
Value
When written this way, everything between the `;` and the newline is