[PHPDOC] cvs: phpdoc /de/language/ functions.xml From: Egon Schmid (eschmid <email protected>)
Date: 05/17/00

eschmid Wed May 17 09:52:16 2000 EDT

  Modified files:
    /phpdoc/de/language functions.xml
  Log:
  Correction.
  
Index: phpdoc/de/language/functions.xml
diff -u phpdoc/de/language/functions.xml:1.4 phpdoc/de/language/functions.xml:1.5
--- phpdoc/de/language/functions.xml:1.4 Thu Feb 10 18:18:30 2000
+++ phpdoc/de/language/functions.xml Wed May 17 09:52:16 2000
@@ -72,11 +72,11 @@
  
      <informalexample>
       <programlisting role="php">
-function fuege_etwas_anderes_an(&amp;$string) {
+function fuege_etwas_anderes_an (&amp;$string) {
     $string .= 'und nun zu etwas völlig anderem.';
 }
 $str = 'Dies ist ein String, ';
-add_some_extra($str);
+fuege_etwas_anderes_an ($str);
 echo $str; // Ausgabe 'Dies ist ein String, und nun zu etwas völlig anderem.'
       </programlisting>
      </informalexample>