diff --git a/src/macros-by-example.md b/src/macros-by-example.md
index c21075b4a..5d786286b 100644
--- a/src/macros-by-example.md
+++ b/src/macros-by-example.md
@@ -33,8 +33,8 @@
> _MacroRepSep_ :\
> [_Token_]_except delimiters and repetition operators_
>
-> _MacroRepOp_2018+ :\
-> `*` | `+` | `?`2018+
+> _MacroRepOp_ :\
+> `*` | `+` | `?`
>
> _MacroTranscriber_ :\
> [_DelimTokenTree_]
@@ -181,10 +181,6 @@ compiler knows how to expand them properly:
illegal because it does not have the same number. This requirement applies
to every layer of nested repetitions.
-> **Edition Differences**: The `?` repetition operator did not exist before the
-> 2018 edition. Prior to the 2018 Edition, `?` was an allowed
-> separator token, rather than a repetition operator.
-
## Scoping, Exporting, and Importing
For historical reasons, the scoping of macros by example does not work entirely like