grammatical fix (identified by abraxas and asonge)

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@237225 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Gwynne Raskind 2007-06-08 19:26:21 +00:00
parent e4add31826
commit 65ec419486

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.139 $ -->
<!-- $Revision: 1.140 $ -->
<chapter id="language.control-structures">
<title>Control Structures</title>
@ -276,8 +276,8 @@ endwhile;
</informalexample>
</para>
<para>
The following examples are identical, and both print numbers from
1 to 10:
The following examples are identical, and both print the numbers
1 through 10:
<informalexample>
<programlisting role="php">
<![CDATA[
@ -426,8 +426,8 @@ for (expr1; expr2; expr3)
expression.
</simpara>
<para>
Consider the following examples. All of them display numbers from
1 to 10:
Consider the following examples. All of them display the numbers
1 through 10:
<informalexample>
<programlisting role="php">
<![CDATA[