diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-07-10 10:01:05 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-07-10 10:01:05 -0700 |
commit | a2bcafea435d1910332beee1b7a990c120d1f680 (patch) | |
tree | 5c81ef172217f5261aaf5d2082dbf2957f575699 | |
parent | 114a3986053ae53b23dc4ebcbd15fc4387d278e0 (diff) |
Removed ambiguity in definition of "line."
Closes #346.
-rw-r--r-- | spec.txt | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -210,7 +210,8 @@ of characters rather than bytes. A conforming parser may be limited to a certain encoding. A [line](@line) is a sequence of zero or more [character]s -followed by a [line ending] or by the end of file. +following a [line ending] (or the beginning of the file) and +followed by a [line ending] (or the end of the file). A [line ending](@line-ending) is a newline (`U+000A`), carriage return (`U+000D`), or carriage return + newline. |