From 7c766d90b5ef99102ded2a2a195025d61e8327ab Mon Sep 17 00:00:00 2001 From: Annika Backstrom Date: Tue, 19 Aug 2025 11:00:14 +0100 Subject: [PATCH] Cleanup dangling line Small cleanup to remove a dangling `is not.` from previous cleanup 06e4d8f936c5b102e60b59c02a048601e9beaf82 I also changed the previous line to flow better (in my opinion) but that could be reverted. --- language/enumerations.xml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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.