[DOC-CVS] [doc-en] master: apcu: fix XML to get remove of useless wrapping para tags - pass2

[email protected] (Gina Peter Banyard)
Newsgroups php.doc.cvs
Message-ID <[email protected]>
Author: Gina Peter Banyard (Girgias)
Date: 2026-01-15T21:44:49Z

Commit: https://github.com/php/doc-en/commit/a706a43f3fa7120bf5bfbe838ed1efe3da127b60
Raw diff: https://github.com/php/doc-en/commit/a706a43f3fa7120bf5bfbe838ed1efe3da127b60.diff

apcu: fix XML to get remove of useless wrapping para tags - pass2

Changed paths:
  M  reference/apcu/functions/apcu-add.xml
  M  reference/apcu/functions/apcu-cache-info.xml
  M  reference/apcu/functions/apcu-delete.xml
  M  reference/apcu/functions/apcu-entry.xml
  M  reference/apcu/functions/apcu-fetch.xml
  M  reference/apcu/functions/apcu-key-info.xml
  M  reference/apcu/functions/apcu-sma-info.xml
  M  reference/apcu/functions/apcu-store.xml


Diff:

diff --git a/reference/apcu/functions/apcu-add.xml b/reference/apcu/functions/apcu-add.xml
index 06248beb6963..87acfa0fe808 100644
--- a/reference/apcu/functions/apcu-add.xml
+++ b/reference/apcu/functions/apcu-add.xml
@@ -119,13 +119,11 @@ string(3) "BAR"
 
  <refsect1 role="seealso">
   &reftitle.seealso;
-  <para>
-   <simplelist>
-    <member><function>apcu_store</function></member>
-    <member><function>apcu_fetch</function></member>
-    <member><function>apcu_delete</function></member>
-   </simplelist>
-  </para>
+  <simplelist>
+   <member><function>apcu_store</function></member>
+   <member><function>apcu_fetch</function></member>
+   <member><function>apcu_delete</function></member>
+  </simplelist>
  </refsect1>
 
 </refentry>
diff --git a/reference/apcu/functions/apcu-cache-info.xml b/reference/apcu/functions/apcu-cache-info.xml
index 08c112fe2cdf..cdb4e31adbe6 100644
--- a/reference/apcu/functions/apcu-cache-info.xml
+++ b/reference/apcu/functions/apcu-cache-info.xml
@@ -78,18 +78,17 @@
 
  <refsect1 role="examples">
   &reftitle.examples;
-  <para>
-   <example>
-    <title>A <function>apcu_cache_info</function> example</title>
-    <programlisting role="php">
+  <example>
+   <title>A <function>apcu_cache_info</function> example</title>
+   <programlisting role="php">
 <![CDATA[
 <?php
 print_r(apcu_cache_info());
 ?>
 ]]>
-    </programlisting>
-    &example.outputs.similar;
-    <screen>
+   </programlisting>
+   &example.outputs.similar;
+   <screen>
 <![CDATA[
 Array
 (
@@ -117,9 +116,8 @@ Array
             [1] => Array (...iterates for each cached file)
 )
 ]]>
-    </screen>
-   </example>
-  </para>
+   </screen>
+  </example>
  </refsect1>
 
  <refsect1 role="seealso">
diff --git a/reference/apcu/functions/apcu-delete.xml b/reference/apcu/functions/apcu-delete.xml
index e1a59633b51f..8e9681fed755 100644
--- a/reference/apcu/functions/apcu-delete.xml
+++ b/reference/apcu/functions/apcu-delete.xml
@@ -66,14 +66,12 @@ apcu_delete(new APCUIterator('#^myprefix_#'));
 
  <refsect1 role="seealso">
   &reftitle.seealso;
-  <para>
-   <simplelist>
-    <member><function>apcu_store</function></member>
-    <member><function>apcu_fetch</function></member>
-    <member><function>apcu_clear_cache</function></member>
-    <member><classname>APCUIterator</classname></member>
-   </simplelist>
-  </para>
+  <simplelist>
+   <member><function>apcu_store</function></member>
+   <member><function>apcu_fetch</function></member>
+   <member><function>apcu_clear_cache</function></member>
+   <member><classname>APCUIterator</classname></member>
+  </simplelist>
  </refsect1>
 
 </refentry>
diff --git a/reference/apcu/functions/apcu-entry.xml b/reference/apcu/functions/apcu-entry.xml
index 71b0aa4cfec4..6c72d26d5400 100644
--- a/reference/apcu/functions/apcu-entry.xml
+++ b/reference/apcu/functions/apcu-entry.xml
@@ -133,13 +133,11 @@ array(2) {
 
  <refsect1 role="seealso">
   &reftitle.seealso;
-  <para>
-   <simplelist>
-    <member><function>apcu_store</function></member>
-    <member><function>apcu_fetch</function></member>
-    <member><function>apcu_delete</function></member>
-   </simplelist>
-  </para>
+  <simplelist>
+   <member><function>apcu_store</function></member>
+   <member><function>apcu_fetch</function></member>
+   <member><function>apcu_delete</function></member>
+  </simplelist>
  </refsect1>
 
 </refentry>
diff --git a/reference/apcu/functions/apcu-fetch.xml b/reference/apcu/functions/apcu-fetch.xml
index 4ee448e80159..c69df7adcc72 100644
--- a/reference/apcu/functions/apcu-fetch.xml
+++ b/reference/apcu/functions/apcu-fetch.xml
@@ -94,13 +94,11 @@ string(3) "BAR"
 
  <refsect1 role="seealso">
   &reftitle.seealso;
-  <para>
-   <simplelist>
-    <member><function>apcu_store</function></member>
-    <member><function>apcu_delete</function></member>
-    <member><classname>APCUIterator</classname></member>
-   </simplelist>
-  </para>
+  <simplelist>
+   <member><function>apcu_store</function></member>
+   <member><function>apcu_delete</function></member>
+   <member><classname>APCUIterator</classname></member>
+  </simplelist>
  </refsect1>
 
 </refentry>
diff --git a/reference/apcu/functions/apcu-key-info.xml b/reference/apcu/functions/apcu-key-info.xml
index b592bcf8d9fb..9db927b96e72 100644
--- a/reference/apcu/functions/apcu-key-info.xml
+++ b/reference/apcu/functions/apcu-key-info.xml
@@ -78,13 +78,11 @@ array(7) {
 
  <refsect1 role="seealso">
   &reftitle.seealso;
-  <para>
-   <simplelist>
-    <member><function>apcu_store</function></member>
-    <member><function>apcu_fetch</function></member>
-    <member><function>apcu_delete</function></member>
-   </simplelist>
-  </para>
+  <simplelist>
+   <member><function>apcu_store</function></member>
+   <member><function>apcu_fetch</function></member>
+   <member><function>apcu_delete</function></member>
+  </simplelist>
  </refsect1>
 
 </refentry>
diff --git a/reference/apcu/functions/apcu-sma-info.xml b/reference/apcu/functions/apcu-sma-info.xml
index a8906395672b..8b38c0ad14f5 100644
--- a/reference/apcu/functions/apcu-sma-info.xml
+++ b/reference/apcu/functions/apcu-sma-info.xml
@@ -81,13 +81,11 @@ Array
 
  <refsect1 role="seealso">
   &reftitle.seealso;
-  <para>
-   <simplelist>
-    <member>
-     <link linkend="apcu.configuration">APCu configuration directives</link>
-    </member>
-   </simplelist>
-  </para>
+  <simplelist>
+   <member>
+    <link linkend="apcu.configuration">APCu configuration directives</link>
+   </member>
+  </simplelist>
  </refsect1>
 
 </refentry>
diff --git a/reference/apcu/functions/apcu-store.xml b/reference/apcu/functions/apcu-store.xml
index 2351485bf4bc..6e0dfd4fcea6 100644
--- a/reference/apcu/functions/apcu-store.xml
+++ b/reference/apcu/functions/apcu-store.xml
@@ -110,13 +110,11 @@ string(3) "BAR"
 
  <refsect1 role="seealso">
   &reftitle.seealso;
-  <para>
-   <simplelist>
-    <member><function>apcu_add</function></member>
-    <member><function>apcu_fetch</function></member>
-    <member><function>apcu_delete</function></member>
-   </simplelist>
-  </para>
+  <simplelist>
+   <member><function>apcu_add</function></member>
+   <member><function>apcu_fetch</function></member>
+   <member><function>apcu_delete</function></member>
+  </simplelist>
  </refsect1>
 
 </refentry>
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.