Fixed a few typos

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@93575 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Dallas Wang 2002-08-25 20:07:05 +00:00
parent 06eae4dca7
commit 62bed2085f

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.61 $ -->
<!-- $Revision: 1.62 $ -->
<chapter id="control-structures">
<title>Control Structures</title>
@ -38,7 +38,7 @@ if (expr)
to &false; - it'll ignore it. More information about what values evaluate
to &false; can be found in the <link
linkend="language.types.boolean.casting">'Converting to boolean'</link>
section>.
section.
</simpara>
<para>
The following example would display <computeroutput>a is bigger
@ -74,7 +74,7 @@ if ($a > $b) {
</informalexample>
</para>
<simpara>
If statements can be nested indefinitely within other
<literal>If</literal> statements can be nested indefinitely within other
<literal>if</literal> statements, which provides you with complete
flexibility for conditional execution of the various parts of your
program.
@ -355,7 +355,7 @@ do {
<simpara>
Don't worry if you don't understand this right away or at all.
You can code scripts and even powerful scripts without using this
`feature'.
'feature'.
</simpara>
</sect1>