[DOC-CVS] [doc-en] master: Fix incorrect indentation of CDATA tags
[email protected] (Gina Peter Banyard)
| Newsgroups | php.doc.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: Gina Peter Banyard (Girgias)
Date: 2026-01-09T01:21:19Z
Commit: https://github.com/php/doc-en/commit/14a6825b9b50f0ee22f19b3fce82ced1c866ca57
Raw diff: https://github.com/php/doc-en/commit/14a6825b9b50f0ee22f19b3fce82ced1c866ca57.diff
Fix incorrect indentation of CDATA tags
Follow-up to GH-4963
Changed paths:
M reference/intl/locale/canonicalize.xml
Diff:
diff --git a/reference/intl/locale/canonicalize.xml b/reference/intl/locale/canonicalize.xml
index f284efa22cfb..feba0e4cfc92 100644
--- a/reference/intl/locale/canonicalize.xml
+++ b/reference/intl/locale/canonicalize.xml
@@ -53,18 +53,18 @@
<example>
<title><function>locale_canonicalize</function> example</title>
<programlisting role="php">
- <![CDATA[
+<![CDATA[
echo Locale::canonicalize('en-US.utf8') . "\n";
echo Locale::canonicalize('totally-not-valid') . "\n";
- ]]>
+]]>
</programlisting>
</example>
&example.outputs.similar;
<screen>
- <![CDATA[
+<![CDATA[
en_US
totally_NOT_VALID
- ]]>
+]]>
</screen>
</refsect1>
</refentry>