From 94d56c9a63fa4ac9e1e887fba9abff30d1bbf529 Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Wed, 4 Dec 2024 19:24:36 +0100 Subject: [PATCH] regex: fix quantifier notes --- docs/misc/regular-expressions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/misc/regular-expressions.md b/docs/misc/regular-expressions.md index 08a1412..c18b74e 100644 --- a/docs/misc/regular-expressions.md +++ b/docs/misc/regular-expressions.md @@ -159,7 +159,7 @@ A quantifier specifies how many instances of the previous element (which can be - `+`: Matches the previous element one or more times. - `?`: Matches the previous element zero or one time. - `{n}`: Matches the previous element exactly n times. -- `{n}`: Matches the previous element at least n times. +- `{n,}`: Matches the previous element at least n times. - `{n,m}`: Matches the previous element at least n times, but no more than m times. - `*?`: Matches the previous element zero or more times, but as few times as possible. - `+?`: Matches the previous element one or more times, but as few times as possible.