jimw Fri Sep 28 17:06:44 2001 EDT
Modified files:
/phpdoc/en/language basic-syntax.xml control-structures.xml
Log:
Perl is the language, perl is the implementation
Index: phpdoc/en/language/basic-syntax.xml
diff -u phpdoc/en/language/basic-syntax.xml:1.16
phpdoc/en/language/basic-syntax.xml:1.17
--- phpdoc/en/language/basic-syntax.xml:1.16 Fri Sep 21 18:47:48 2001
+++ phpdoc/en/language/basic-syntax.xml Fri Sep 28 17:06:44 2001
@@ -1,5 +1,5 @@
<?xml encoding="iso-8859-1"?>
-<!-- $Revision: 1.16 $ -->
+<!-- $Revision: 1.17 $ -->
<chapter id="language.basic-syntax">
<title>Basic syntax</title>
@@ -138,7 +138,7 @@
<title>Instruction separation</title>
<simpara>
- Instructions are separated the same as in C or perl - terminate
+ Instructions are separated the same as in C or Perl - terminate
each statement with a semicolon.</simpara>
<para>
Index: phpdoc/en/language/control-structures.xml
diff -u phpdoc/en/language/control-structures.xml:1.38
phpdoc/en/language/control-structures.xml:1.39
--- phpdoc/en/language/control-structures.xml:1.38 Fri Sep 21 18:47:48 2001
+++ phpdoc/en/language/control-structures.xml Fri Sep 28 17:06:44 2001
@@ -1,5 +1,5 @@
<?xml encoding="iso-8859-1"?>
-<!-- $Revision: 1.38 $ -->
+<!-- $Revision: 1.39 $ -->
<chapter id="control-structures">
<title>Control Structures</title>
@@ -451,7 +451,7 @@
<title><literal>foreach</literal></title>
<para>
PHP 4 (not PHP 3) includes a <literal>foreach</literal> construct,
- much like perl and some other languages. This simply gives an easy
+ much like Perl and some other languages. This simply gives an easy
way to iterate over arrays. There are two syntaxes; the second is
a minor but useful extension of the first:
<informalexample>