mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Use the proper terms for the parameter names
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@343028 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
d0f5b88a93
commit
b8276aede8
2 changed files with 14 additions and 14 deletions
|
@ -10,13 +10,13 @@
|
|||
&reftitle.description;
|
||||
<methodsynopsis>
|
||||
<type>string</type><methodname>bcdiv</methodname>
|
||||
<methodparam><type>string</type><parameter>left_operand</parameter></methodparam>
|
||||
<methodparam><type>string</type><parameter>right_operand</parameter></methodparam>
|
||||
<methodparam><type>string</type><parameter>dividend</parameter></methodparam>
|
||||
<methodparam><type>string</type><parameter>divisor</parameter></methodparam>
|
||||
<methodparam choice="opt"><type>int</type><parameter>scale</parameter><initializer>0</initializer></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
Divides the <parameter>left_operand</parameter> by the
|
||||
<parameter>right_operand</parameter>.
|
||||
Divides the <parameter>dividend</parameter> by the
|
||||
<parameter>divisor</parameter>.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
|
@ -25,18 +25,18 @@
|
|||
<para>
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term><parameter>left_operand</parameter></term>
|
||||
<term><parameter>dividend</parameter></term>
|
||||
<listitem>
|
||||
<para>
|
||||
The left operand, as a string.
|
||||
The dividend, as a string.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><parameter>right_operand</parameter></term>
|
||||
<term><parameter>divisor</parameter></term>
|
||||
<listitem>
|
||||
<para>
|
||||
The right operand, as a string.
|
||||
The divisor, as a string.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
@ -49,7 +49,7 @@
|
|||
&reftitle.returnvalues;
|
||||
<para>
|
||||
Returns the result of the division as a string, or &null; if
|
||||
<parameter>right_operand</parameter> is 0.
|
||||
<parameter>divisor</parameter> is <literal>0</literal>.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
|
|
|
@ -10,11 +10,11 @@
|
|||
&reftitle.description;
|
||||
<methodsynopsis>
|
||||
<type>string</type><methodname>bcmod</methodname>
|
||||
<methodparam><type>string</type><parameter>left_operand</parameter></methodparam>
|
||||
<methodparam><type>string</type><parameter>dividend</parameter></methodparam>
|
||||
<methodparam><type>string</type><parameter>modulus</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
Get the modulus of the <parameter>left_operand</parameter> using
|
||||
Get the modulus of the <parameter>dividend</parameter> using
|
||||
<parameter>modulus</parameter>.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
@ -24,10 +24,10 @@
|
|||
<para>
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term><parameter>left_operand</parameter></term>
|
||||
<term><parameter>dividend</parameter></term>
|
||||
<listitem>
|
||||
<para>
|
||||
The left operand, as a string.
|
||||
The dividend, as a string.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
@ -47,7 +47,7 @@
|
|||
&reftitle.returnvalues;
|
||||
<para>
|
||||
Returns the modulus as a string, or &null; if
|
||||
<parameter>modulus</parameter> is 0.
|
||||
<parameter>modulus</parameter> is <literal>0</literal>.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
|
|
Loading…
Reference in a new issue