vrana Thu Jun 28 11:02:27 2007 UTC
Modified files:
/phpdoc/en/language control-structures.xml
Log:
default in switch doesn't need to be last
http://cvs.php.net/viewvc.cgi/phpdoc/en/language/control-structures.xml?r1=1.142&r2=1.143&diff_format=u
Index: phpdoc/en/language/control-structures.xml
diff -u phpdoc/en/language/control-structures.xml:1.142
phpdoc/en/language/control-structures.xml:1.143
--- phpdoc/en/language/control-structures.xml:1.142 Wed Jun 20 22:24:11 2007
+++ phpdoc/en/language/control-structures.xml Thu Jun 28 11:02:27 2007
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.142 $ -->
+<!-- $Revision: 1.143 $ -->
<chapter xml:id="language.control-structures"
xmlns="http://docbook.org/ns/docbook"
xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Control Structures</title>
@@ -969,8 +969,7 @@
</para>
<para>
A special case is the <literal>default</literal> case. This case matches
- anything that wasn't matched by the other cases, and should be the last
- <literal>case</literal> statement. For example:
+ anything that wasn't matched by the other cases. For example:
<informalexample>
<programlisting role="php">
<![CDATA[