minor reword

This commit is contained in:
Kat Marchán 2024-02-08 09:47:42 -08:00
parent b1163e1f91
commit f81fcfada5
No known key found for this signature in database
GPG Key ID: AEB529C08A3C7E9E
1 changed files with 6 additions and 5 deletions

11
SPEC.md
View File

@ -342,12 +342,13 @@ The following characters cannot be used anywhere in a [Identifier String](#ident
A Quoted String is delimited by `"` on either side of any number of literal A Quoted String is delimited by `"` on either side of any number of literal
string characters except unescaped `"` and `\`. This includes literal string characters except unescaped `"` and `\`. This includes literal
[Newline](#newline) characters, which means a String Value can encompass [Newline](#newline) characters, which means a single String Value can span
multiple lines without behaving like a Newline for [Node](#node) parsing multiple lines, following specific [Multi-line String](#multi-line-strings)
purposes. rules.
Like Identifier Strings, Quoted Strings _MUST NOT_ include any of the [disallowed literal Like Identifier Strings, Quoted Strings _MUST NOT_ include any of the
code-points](#disallowed-literal-code-points) as code points in their body. [disallowed literal code-points](#disallowed-literal-code-points) as code
points in their body.
Quoted Strings also follow the Multi-line rules specified in [Multi-line Quoted Strings also follow the Multi-line rules specified in [Multi-line
String](#multi-line-strings). String](#multi-line-strings).