fix a typo

This commit is contained in:
OccupyMars2025 2023-05-11 20:13:17 +08:00 committed by GitHub
parent 9ac3de60df
commit 042cd782cc
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.