Replaced & with &, due to bug in rev #305489.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@305566 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Justin Martin 2010-11-19 20:14:00 +00:00
parent 72747a6aca
commit 441466d89c

View file

@ -53,7 +53,7 @@
indirect modification, on the other hand, only changes part of the
dimension, or attempts to assign the dimension by reference to
another variable, as in <literal>$obj[6][7] = 7</literal> or
<literal>$var =& $obj[6]</literal>. Increments with
<literal>$var =&amp; $obj[6]</literal>. Increments with
<literal>++</literal> and decrements with <literal>--</literal>
are also implemented in a way that requires indirect modification.
</para>