derick          Sat Mar  9 18:12:11 2002 EDT

  Modified files:              
    /phpdoc/en/functions        ctype.xml dir.xml swf.xml 
    /phpdoc/ja/functions        zlib.xml 
  Log:
  - Typoes and whitespace
  
  
Index: phpdoc/en/functions/ctype.xml
diff -u phpdoc/en/functions/ctype.xml:1.19 phpdoc/en/functions/ctype.xml:1.20
--- phpdoc/en/functions/ctype.xml:1.19  Sat Mar  2 12:24:00 2002
+++ phpdoc/en/functions/ctype.xml       Sat Mar  9 18:12:10 2002
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.19 $ -->
+<!-- $Revision: 1.20 $ -->
  <reference id="ref.ctype">
   <title>Character type functions</title>
   <titleabbrev>ctype</titleabbrev>
@@ -132,7 +132,7 @@
     </methodsynopsis>
     <para>
      Returns &true; if every character in <parameter>text</parameter> has
-     a special control funcion, &false; otherwise. Control characters are
+     a special control function, &false; otherwise. Control characters are
      e.g. line feed, tab, esc.
     </para>
    </refsect1>
Index: phpdoc/en/functions/dir.xml
diff -u phpdoc/en/functions/dir.xml:1.34 phpdoc/en/functions/dir.xml:1.35
--- phpdoc/en/functions/dir.xml:1.34    Tue Feb 26 16:47:10 2002
+++ phpdoc/en/functions/dir.xml Sat Mar  9 18:12:10 2002
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.34 $ -->
+<!-- $Revision: 1.35 $ -->
  <reference id="ref.dir">
   <title>Directory functions</title>
   <titleabbrev>Directories</titleabbrev>
@@ -90,7 +90,7 @@
      <function>closedir</function>.  The path property is set to path
      the directory that was opened.  Three methods are available:
      read, rewind and close.
-     </para>
+    </para>
     <para>
      Please note the fashion in which <function>dir</function>'s
      return value is checked in the example below. We are explicitly
Index: phpdoc/en/functions/swf.xml
diff -u phpdoc/en/functions/swf.xml:1.29 phpdoc/en/functions/swf.xml:1.30
--- phpdoc/en/functions/swf.xml:1.29    Sun Feb 24 07:35:31 2002
+++ phpdoc/en/functions/swf.xml Sat Mar  9 18:12:10 2002
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.29 $ -->
+<!-- $Revision: 1.30 $ -->
  <reference id="ref.swf">
   <title>Shockwave Flash functions</title>
   <titleabbrev>SWF</titleabbrev>
@@ -1572,7 +1572,7 @@
       <methodparam><type>float</type><parameter>zmax</parameter></methodparam>
      </methodsynopsis>
     <para>
-     The <function>swf_ortho</function> funcion defines a orthographic
+     The <function>swf_ortho</function> function defines a orthographic
      mapping of user coordinates onto the current viewport.
     </para>
    </refsect1>
Index: phpdoc/ja/functions/zlib.xml
diff -u phpdoc/ja/functions/zlib.xml:1.16 phpdoc/ja/functions/zlib.xml:1.17
--- phpdoc/ja/functions/zlib.xml:1.16   Sat Feb  2 10:44:31 2002
+++ phpdoc/ja/functions/zlib.xml        Sat Mar  9 18:12:10 2002
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision: 1.16 $ -->
+<!-- $Revision: 1.17 $ -->
  <reference id="ref.zlib">
   <title>zlib圧縮関数</title>
   <titleabbrev>Zlib</titleabbrev>
@@ -733,11 +733,11 @@
       <programlisting role="php">
 <![CDATA[
 <?php
-$data = implode("", "bigfile.txt");
-$gzdata = gzencode($data, 9);
-$fp = fopen("bigfile.txt.gz", "w");
-fwrite($fp, $gzdata);
-fclose($fp);
+    $data = implode("", file("bigfile.txt"));
+    $gzdata = gzencode($data, 9);
+    $fp = fopen("bigfile.txt.gz", "w");
+    fwrite($fp, $gzdata);
+    fclose($fp);
 ?>
 ]]>
       </programlisting>


Reply via email to