diff --git a/language/enumerations.xml b/language/enumerations.xml
index d9f1c34fa089..4a72c2ce4b8e 100644
--- a/language/enumerations.xml
+++ b/language/enumerations.xml
@@ -195,8 +195,7 @@ enum Suit: string
The equivalent values may be a constant scalar expression.
Prior to PHP 8.2.0, the equivalent values had to be literals or literal expressions.
This means that constants and constant expressions were not supported.
- That is, 1 + 1 was allowed, but not 1 + SOME_CONST.
- is not.
+ That is, 1 + 1 was allowed, but 1 + SOME_CONST was not.