aboutsummaryrefslogtreecommitdiff
path: root/bpeg.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2020-09-13 22:04:51 -0700
committerBruce Hill <bruce@bruce-hill.com>2020-09-13 22:04:51 -0700
commit1570dd55e8f3601e72893d6954044317973d7c60 (patch)
treedb3169b0d18a8e8d3930d73819c6a20d95c5a7b3 /bpeg.c
parent1d1c3d35aae0e060a6527d6e83575dd7ff71328e (diff)
Changed "upto-and" syntax to ".."/"..."
Diffstat (limited to 'bpeg.c')
-rw-r--r--bpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bpeg.c b/bpeg.c
index 89f35e7..2245ff8 100644
--- a/bpeg.c
+++ b/bpeg.c
@@ -3,6 +3,7 @@
*
* Grammar:
* # <comment> comment
+ * .. any text up to the following pattern (if any); (multiline: ...)
* . any character (multiline: $.)
* ^ beginning of a line (^^: beginning of file)
* $ end of a line ($$: end of file)
@@ -13,7 +14,6 @@
* \<e1>-<e2> escape sequence range (e.g. \x00-\xF0)
* ! <pat> no <pat>
* ~ <pat> any character as long as it doesn't match <pat> (multiline: ~~<pat>)
- * & <pat> upto and including <pat> (aka *~<pat> <pat>) (multiline: &&<pat>)
* <N=1> + <pat> [% <sep="">] <N> or more <pat>s (separated by <sep>)
* * <pat> [% <sep="">] sugar for "0+ <pat> [% <sep>]"
* <N=1> - <pat> [% <sep="">] <N> or fewer <pat>s (separated by <sep>)