diff --git a/regexp.md b/regexp.md index b84f3aab8..24a6519c5 100644 --- a/regexp.md +++ b/regexp.md @@ -47,11 +47,11 @@ description: | ### Groups -| Pattern | Description | -| --------- | ------------------------- | -| `(abc)` | Capture group | -| `(a|b)` | Match either a or b | -| `(?:abc)` | Match everything enclosed | +| Pattern | Description | +| --------- | ------------------------------ | +| `(abc)` | Capture group | +| `(a|b)` | Match `a` or `b` | +| `(?:abc)` | Match `abc`, but don't capture | ### Quantifiers