[DOC-CVS] [doc-en] master: enumerations: Cleanup dangling line in description of backed cases (#4842)
[email protected] (Annika Backstrom via GitHub)
| Newsgroups | php.doc.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: Annika Backstrom (abackstrometsy)
Committer: GitHub (web-flow)
Pusher: DanielEScherzer
Date: 2025-08-26T09:06:22-07:00
Commit: https://github.com/php/doc-en/commit/2e5f2910f3a2a95dcbdaf580ba57a0b60b072c2a
Raw diff: https://github.com/php/doc-en/commit/2e5f2910f3a2a95dcbdaf580ba57a0b60b072c2a.diff
enumerations: Cleanup dangling line in description of backed cases (#4842)
Small cleanup to remove a dangling `is not.` from previous cleanup #4413
Changed paths:
M language/enumerations.xml
Diff:
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, <code>1 + 1</code> was allowed, but not <code>1 + SOME_CONST</code>.
- is not.
+ That is, <code>1 + 1</code> was allowed, but <code>1 + SOME_CONST</code> was not.
</para>
<para>