goba Mon Aug 20 09:58:08 2001 EDT
Modified files:
/phpdoc/en/language references.xml
Log:
More WS FIXES. People just don't seem to understand
that we use four spaces for identation.... Gosh...
Index: phpdoc/en/language/references.xml
diff -u phpdoc/en/language/references.xml:1.14 phpdoc/en/language/references.xml:1.15
--- phpdoc/en/language/references.xml:1.14 Sun Aug 19 13:03:32 2001
+++ phpdoc/en/language/references.xml Mon Aug 20 09:58:08 2001
@@ -1,5 +1,5 @@
<?xml encoding="iso-8859-1"?>
-<!-- $Revision: 1.14 $ -->
+<!-- $Revision: 1.15 $ -->
<chapter id="language.references">
<title>References Explained</title>
@@ -156,8 +156,8 @@
<programlisting role="php">
function &bar()
{
- $a = 5;
- return $a;
+ $a = 5;
+ return $a;
}
foo(bar());
</programlisting>
@@ -176,8 +176,8 @@
<programlisting role="php">
function bar() // Note the missing &
{
- $a = 5;
- return $a;
+ $a = 5;
+ return $a;
}
foo(bar());