From b4c8a33a0cbf4938b53458ded4d46efc6e8820ab Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Wed, 20 Jan 2021 15:23:57 -0800 Subject: Tweaked `..` syntax to make it more flexible (now: `.. % skip pat`) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index 14f6b57..1bf5301 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ Pattern | Meaning `pat1 pat2` | `pat1` followed by `pat2` `pat1 / pat2` | `pat1` if it matches, otherwise `pat2` `..pat` | Any text up to and including `pat` (except newlines) -`..pat1 % pat2` | Any text up to and including `pat1` (except newlines), skipping over instances of `pat2` +`.. % skip pat` | Any text up to and including `pat` (except newlines), skipping over instances of `skip` `.` | Any single character (except newline) `^^` | The start of the input `^` | The start of a line -- cgit v1.2.3