nuke more superfluous dashes, and refer to NULL as a value when talking about values that evaluate to false.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@61231 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
jim winstead 2001-10-31 01:53:22 +00:00
parent 1738c68f34
commit df70f43a81

View file

@ -1,5 +1,5 @@
<?xml encoding="iso-8859-1"?>
<!-- $Revision: 1.56 $ -->
<!-- $Revision: 1.57 $ -->
<chapter id="language.types">
<title>Types</title>
@ -232,7 +232,7 @@ if ($show_separators) {
with zero elements</simpara>
</listitem>
<listitem>
<simpara>the special type <link linkend="language.types.null"
<simpara>the special value <link linkend="language.types.null"
>NULL</link>
</simpara>
</listitem>
@ -312,7 +312,7 @@ $a = 0x1A; # hexadecimal number (equivalent to 26 decimal)
<sect2 id="language.types.integer.overflow">
<title>Integer overflow</title>
<para>
If you specify a number beyond the bounds of the <type>integer</type>-type,
If you specify a number beyond the bounds of the <type>integer</type> type,
it will be interpreted as a <type>float</type> instead.
</para>
<para>
@ -1246,7 +1246,7 @@ $error_descriptions[8] = "This is just an informal notice";
<sect2 id="language.types.array.examples">
<title>Examples</title>
<para>
The array-type in PHP is very versatile, so here will be some
The array type in PHP is very versatile, so here will be some
examples to show you the full power of arrays.
</para>
<para>
@ -1689,13 +1689,13 @@ $bar->do_foo();
are created and used by special functions.
See the <link linkend="resource">appendix</link>
for a listing of all these
functions and the corresponding resource-types.
functions and the corresponding resource types.
</para>
<note>
<simpara>
The resource-type was introduced in PHP 4
The resource type was introduced in PHP 4
</simpara>
</note>
@ -1736,7 +1736,7 @@ $bar->do_foo();
</para>
<note>
<simpara>
The null-type was introduced in PHP 4
The null type was introduced in PHP 4
</simpara>
</note>