diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2021-01-20 15:23:57 -0800 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2021-01-20 15:23:57 -0800 |
| commit | b4c8a33a0cbf4938b53458ded4d46efc6e8820ab (patch) | |
| tree | b5823b03aa1d6ab8dc5dc92cd543ca77c1c0b3c2 /README.md | |
| parent | 3c38aef78c637f933da7111bc55b77d94a824afa (diff) | |
Tweaked `..` syntax to make it more flexible (now: `.. % skip pat`)
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |
