Correct bug

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@56554 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Gabor Hojtsy 2001-09-02 13:27:42 +00:00
parent de9fbf7367
commit 63e9bc2e15

View file

@ -1,5 +1,5 @@
<?xml encoding="iso-8859-1"?>
<!-- $Revision: 1.88 $ -->
<!-- $Revision: 1.89 $ -->
<reference id="ref.array">
<title>Array Functions</title>
<titleabbrev>Arrays</titleabbrev>
@ -1661,10 +1661,10 @@ while (list ($key, $val) = each ($fruits)) {
<para>
<informalexample>
<programlisting>
fruits[a] = orange
fruits[d] = lemon
fruits[b] = banana
fruits[c] = apple
a = orange
d = lemon
b = banana
c = apple
</programlisting>
</informalexample>
</para>
@ -1721,10 +1721,10 @@ while (list ($key, $val) = each ($fruits)) {
<para>
<informalexample>
<programlisting>
fruits[c] = apple
fruits[b] = banana
fruits[d] = lemon
fruits[a] = orange
c = apple
b = banana
d = lemon
a = orange
</programlisting>
</informalexample>
</para>