Merge pull request #1359 from OccupyMars2025/patch-1

fix a typo
This commit is contained in:
Eric Huss 2023-05-11 07:54:24 -07:00 committed by GitHub
commit 5ddf52ae12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -166,7 +166,7 @@ The repetition operators are:
- `*` — indicates any number of repetitions.
- `+` — indicates any number but at least one.
- `?` — indicates an optional fragment with zero or one occurrences.
- `?` — indicates an optional fragment with zero or one occurrence.
Since `?` represents at most one occurrence, it cannot be used with a
separator.