Skip to content

Commit fd16fba

Browse files
author
Jean-Marcel Belmont
committed
Fix markdown table in section.
1 parent c923c00 commit fd16fba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/text-searching.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ Here are some examples from the [Regular Expressions Wikipedia Page](https://en.
114114
| --- | --- |
115115
| `?` | Matches the preceding element zero or one time. For example, ab?c matches only "ac" or "abc". |
116116
| `+` | Matches the preceding element one or more times. For example, ab+c matches "abc", "abbc", "abbbc", and so on, but not "ac". |
117-
| <code>&#124;</code> | The choice (also known as alternation or set union) operator matches either the expression before or the expression after the operator. For example, `abc\|def` matches "abc" or "def". |
117+
| <code>&#124;</code> | The choice (also known as alternation or set union) operator matches either the expression before or the expression after the operator. For example, abc&#124;def matches "abc" or "def". |
118118

119119
###### Examples of EREs
120120

0 commit comments

Comments
 (0)