Removed dollar sign from representation of endless number of arguments

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@245806 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Felipe Pena 2007-11-07 11:42:31 +00:00
parent 7d173bd60b
commit 9c70b87649

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.187 $ -->
<!-- $Revision: 1.188 $ -->
<chapter xml:id="language.types" xmlns="http://docbook.org/ns/docbook">
<title>Types</title>
@ -102,7 +102,7 @@
</listitem>
</itemizedlist>
And the pseudo-variable <parameter>$...</parameter>.
And the pseudo-variable <parameter>...</parameter>.
</para>
<simpara>
You may also find some references to the type "double". Consider
@ -2451,7 +2451,7 @@ call_user_func(array($obj, 'myCallbackMethod'));
<sect2 xml:id="language.types.dotdotdot">
<title>...</title>
<para>
<parameter>$...</parameter> in function prototypes means
<parameter>...</parameter> in function prototypes means
<literal>and so on</literal>.
This variable name is used when a function can take an endless number of
arguments.