Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix section order issues #1262

Merged
merged 2 commits into from
Dec 28, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 11 additions & 25 deletions reference/dom/domnodelist.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,14 @@ Remove me once you perform substitutions
</row>
</thead>
<tbody>
<row>
<entry>8.0.0</entry>
<entry>
<classname>DOMNodeList</classname> implements
<interfacename>IteratorAggregate</interfacename> now.
Previously, <interfacename>Traversable</interfacename> was implemented instead.
</entry>
</row>
<row>
<entry>7.2.0</entry>
<entry>
Expand All @@ -102,7 +110,8 @@ Remove me once you perform substitutions
</tgroup>
</informaltable>
</para>
</section><!-- }}} -->
</section><!-- }}} -->

<!-- {{{ See also -->
<section role="seealso">
&reftitle.seealso;
Expand All @@ -112,30 +121,7 @@ Remove me once you perform substitutions
</simplelist>
</para>
</section>

<section role="changelog">
&reftitle.changelog;
<informaltable>
<tgroup cols="2">
<thead>
<row>
<entry>&Version;</entry>
<entry>&Description;</entry>
</row>
</thead>
<tbody>
<row>
<entry>8.0.0</entry>
<entry>
<classname>DOMNodeList</classname> implements
<interfacename>IteratorAggregate</interfacename> now.
Previously, <interfacename>Traversable</interfacename> was implemented instead.
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</section>

<!-- }}} -->
</partintro>

Expand Down
16 changes: 8 additions & 8 deletions reference/ftp/functions/ftp-mkdir.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,14 @@
</para>
</refsect1>

<refsect1 role="errors">
&reftitle.errors;
<simpara>
Emits an <constant>E_WARNING</constant> level error if the directory
already exists or the relevant permissions prevent creating the directory.
</simpara>
</refsect1>

<refsect1 role="changelog">
&reftitle.changelog;
<informaltable>
Expand All @@ -61,14 +69,6 @@
</informaltable>
</refsect1>

<refsect1 role="errors">
&reftitle.errors;
<simpara>
Emits an <constant>E_WARNING</constant> level error if the directory
already exists or the relevant permissions prevent creating the directory.
</simpara>
</refsect1>

<refsect1 role="examples">
&reftitle.examples;
<para>
Expand Down
22 changes: 11 additions & 11 deletions reference/mysqli/mysqli_result/num-rows.xml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,17 @@ Result set has 239 rows.
</example>
</refsect1>

<refsect1 role="notes">
&reftitle.notes;
<note>
<para>
In contrast to the <function>mysqli_stmt_num_rows</function> function,
this function doesn't have object-oriented method variant.
In the object-oriented style, use the getter property.
</para>
</note>
</refsect1>

<refsect1 role="seealso">
&reftitle.seealso;
<para>
Expand All @@ -105,17 +116,6 @@ Result set has 239 rows.
</para>
</refsect1>

<refsect1 role="notes">
&reftitle.notes;
<note>
<para>
In contrast to the <function>mysqli_stmt_num_rows</function> function,
this function doesn't have object-oriented method variant.
In the object-oriented style, use the getter property.
</para>
</note>
</refsect1>

</refentry>
<!-- Keep this comment at the end of the file
Local variables:
Expand Down
35 changes: 17 additions & 18 deletions reference/stream/functions/stream-socket-client.xml
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,23 @@
</para>
</refsect1><!-- }}} -->

<refsect1 role="errors"><!-- {{{ -->
&reftitle.errors;
<para>
On failure the <parameter>error_code</parameter> and
<parameter>error_message</parameter> arguments will be populated with the actual
system level error that occurred in the system-level
<literal>connect()</literal> call. If the value returned in
<parameter>error_code</parameter> is <literal>0</literal> and the
function returned &false;, it is an indication that the error
occurred before the <literal>connect()</literal> call. This is
most likely due to a problem initializing the socket. Note that
the <parameter>error_code</parameter> and
<parameter>error_message</parameter> arguments will always be passed by
reference.
</para>
</refsect1><!-- }}} -->

<refsect1 role="changelog">
&reftitle.changelog;
<informaltable>
Expand All @@ -146,24 +163,6 @@
</informaltable>
</refsect1>

<refsect1 role="errors"><!-- {{{ -->
&reftitle.errors;
<para>
On failure the <parameter>error_code</parameter> and
<parameter>error_message</parameter> arguments will be populated with the actual
system level error that occurred in the system-level
<literal>connect()</literal> call. If the value returned in
<parameter>error_code</parameter> is <literal>0</literal> and the
function returned &false;, it is an indication that the error
occurred before the <literal>connect()</literal> call. This is
most likely due to a problem initializing the socket. Note that
the <parameter>error_code</parameter> and
<parameter>error_message</parameter> arguments will always be passed by
reference.
</para>
</refsect1><!-- }}} -->


<refsect1 role="examples"><!-- {{{ -->
&reftitle.examples;
<para>
Expand Down