From 042cd782ccdd25c266ff5baaead64e814f13a6dd Mon Sep 17 00:00:00 2001 From: OccupyMars2025 <31559413+OccupyMars2025@users.noreply.github.com> Date: Thu, 11 May 2023 20:13:17 +0800 Subject: [PATCH] fix a typo --- src/macros-by-example.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/macros-by-example.md b/src/macros-by-example.md index cd9dc3402..51aa919fc 100644 --- a/src/macros-by-example.md +++ b/src/macros-by-example.md @@ -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.