eschmid Thu Aug 2 19:41:47 2001 EDT
Modified files:
/phpdoc/en/language expressions.xml
Log:
Some more corrections.
Index: phpdoc/en/language/expressions.xml
diff -u phpdoc/en/language/expressions.xml:1.10 phpdoc/en/language/expressions.xml:1.11
--- phpdoc/en/language/expressions.xml:1.10 Thu Aug 2 19:34:05 2001
+++ phpdoc/en/language/expressions.xml Thu Aug 2 19:41:47 2001
@@ -1,4 +1,4 @@
-<!-- $Revision: 1.10 $ -->
+<!-- $Revision: 1.11 $ -->
<chapter id="language.expressions">
<title>Expressions</title>
@@ -118,7 +118,7 @@
assigned into $a). Any two-place operator can be used in this
operator-assignment mode, for example '$a -= 5' (subtract 5 from
the value of $a), '$b *= 7' (multiply the value of $b by 7), etc.
-</simpara>
+ </simpara>
<para>
There is one more expression that may seem odd if you haven't seen
@@ -131,7 +131,8 @@
If the value of the first subexpression is &true; (non-zero), then
the second subexpression is evaluated, and that is the result of
the conditional expression. Otherwise, the third subexpression is
- evaluated, and that is the value.</para>
+ evaluated, and that is the value.
+ </para>
<para>
The following example should help you understand pre- and