diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-06-29 14:54:39 +0200 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-06-29 14:54:39 +0200 |
commit | 1bfbf8c2474d2318f5fdebfd9585a5977c3f67b2 (patch) | |
tree | 0870cf7127c219cefad5a7f8de62b9d5cfd8c840 | |
parent | f49f2b202b300840c3a2ef53e40697017095abf8 (diff) |
Removed possibly misleading 'either's.
These are sometimes interpreted as XOR (and that isn't meant
in this case).
Closes jgm/CommonMark#467.
-rw-r--r-- | spec.txt | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5852,14 +5852,14 @@ characters that is not preceded or followed by a `_` character. A [left-flanking delimiter run](@) is a [delimiter run] that is (a) not followed by [Unicode whitespace], -and (b) either not followed by a [punctuation character], or +and (b) not followed by a [punctuation character], or preceded by [Unicode whitespace] or a [punctuation character]. For purposes of this definition, the beginning and the end of the line count as Unicode whitespace. A [right-flanking delimiter run](@) is a [delimiter run] that is (a) not preceded by [Unicode whitespace], -and (b) either not preceded by a [punctuation character], or +and (b) not preceded by a [punctuation character], or followed by [Unicode whitespace] or a [punctuation character]. For purposes of this definition, the beginning and the end of the line count as Unicode whitespace. |