Grammar fix. What the hell did I think 'equal and identical to' was

supposed to mean? :)


git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@69972 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Torben Wilson 2002-02-10 18:56:54 +00:00
parent 37d2d048ac
commit 3fff298bd3

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.31 $ -->
<!-- $Revision: 1.32 $ -->
<reference id="ref.dir">
<title>Directory functions</title>
<titleabbrev>Directories</titleabbrev>
@ -215,9 +215,12 @@ if ($dir = @opendir("/tmp")) {
<para>
Please note the fashion in which <function>readdir</function>'s
return value is checked in the examples below. We are explicitly
testing whether the return value is equal and identical to
&false; since otherwise, any directory entry whose name evaluates
to &false; will stop the loop.
testing whether the return value is identical to (equal to and of
the same type as--see <link
linkend="language.operators.comparison">Comparison
Operators</link> for more information) &false; since otherwise,
any directory entry whose name evaluates to &false; will stop the
loop.
</para>
<para>
<example>