Skip to content

Commit

Permalink
fix regex logical or documentation (#27637)
Browse files Browse the repository at this point in the history
* fix regex logical or documentation

Co-authored-by: Kristin Laemmert <[email protected]>
  • Loading branch information
stephengroat and mildwonkey authored Feb 8, 2021
1 parent 32d2084 commit e39abbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/docs/language/functions/regex.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ of the pattern must be escaped as `\\`.
| `\PN` | The opposite of `\pN` |
| `\P{Greek}` | The opposite of `\p{Greek}` |
| `xy` | `x` followed immediately by `y` |
| `x|y` | either `x` or `y`, preferring `x` |
| <code>x&#124;y</code> | either `x` or `y`, preferring `x` |
| `x*` | zero or more `x`, preferring more |
| `x*?` | zero or more `x`, preferring fewer |
| `x+` | one or more `x`, preferring more |
Expand Down

0 comments on commit e39abbf

Please sign in to comment.