dave            Thu Dec  8 07:10:55 2005 EDT

  Modified files:              
    /phpdoc/en/appendices       migration5.xml 
    /phpdoc/en/install/windows  building.xml 
    /phpdoc/en/internals/pdo    implementing.xml preparation.xml 
    /phpdoc/en/internals/zendapi        arguments.xml variables.xml 
    /phpdoc/en/language/oop5    decon.xml 
    /phpdoc/en/reference/apc    ini.xml 
    /phpdoc/en/reference/gnupg  reference.xml 
    /phpdoc/en/reference/gnupg/functions        gnupg-geterror.xml 
                                                gnupg-keyinfo.xml 
                                                gnupg-setarmor.xml 
    /phpdoc/en/reference/image/functions        imagecreatetruecolor.xml 
    /phpdoc/en/reference/pdo    reference.xml 
    /phpdoc/en/reference/ssh2/functions ssh2-publickey-list.xml 
    /phpdoc/en/reference/stats/functions        stats-cdf-beta.xml 
    /phpdoc/en/reference/xmlreader/functions    
                                                xmlreader-movetoelement.xml 
  Log:
  - Typos.
  
  
http://cvs.php.net/diff.php/phpdoc/en/appendices/migration5.xml?r1=1.43&r2=1.44&ty=u
Index: phpdoc/en/appendices/migration5.xml
diff -u phpdoc/en/appendices/migration5.xml:1.43 
phpdoc/en/appendices/migration5.xml:1.44
--- phpdoc/en/appendices/migration5.xml:1.43    Thu Dec  1 00:20:05 2005
+++ phpdoc/en/appendices/migration5.xml Thu Dec  8 07:10:46 2005
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.43 $ -->
+<!-- $Revision: 1.44 $ -->
  <appendix id="migration5">
   <title>Migrating from PHP 4 to PHP 5</title>
 
@@ -128,7 +128,7 @@
     <listitem>
      <simpara>
       If there are functions defined in the included file, they will be defined
-      in the main file, wether they are before or after the 
+      in the main file, whether they are before or after the 
       <function>return</function> instruction. If the file is included twice, 
       PHP 5 issues fatal error because functions were already declared, while 
       PHP 4 doesn't complain about it.
http://cvs.php.net/diff.php/phpdoc/en/install/windows/building.xml?r1=1.9&r2=1.10&ty=u
Index: phpdoc/en/install/windows/building.xml
diff -u phpdoc/en/install/windows/building.xml:1.9 
phpdoc/en/install/windows/building.xml:1.10
--- phpdoc/en/install/windows/building.xml:1.9  Wed Nov 30 18:50:13 2005
+++ phpdoc/en/install/windows/building.xml      Thu Dec  8 07:10:50 2005
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.9 $ -->
+<!-- $Revision: 1.10 $ -->
 <sect1 id="install.windows.building">
  <title>Building from source</title>
  <para>
@@ -239,7 +239,7 @@
    module.
   </para>
   <para>
-   The last step is compilling. To achieve this just issue the command
+   The last step is compiling. To achieve this just issue the command
    <command>nmake</command>. The generated files (e.g. .exe and .dll) will be
    placed in either <filename class="directory">Release_TS</filename> or
    <filename class="directory">Debug_TS</filename> directories (if built with
@@ -255,7 +255,7 @@
    clean</command> command.
   </para>
   <para>
-   A very usefull configure option to build snapshots is
+   A very useful configure option to build snapshots is
    <literal>--enable-snapshot-build</literal>, which add a new compiling mode
    (<command>nmake build-snap</command>). This tries to build every extension
    available (as shared, by default), but it will ignore build errors in
http://cvs.php.net/diff.php/phpdoc/en/internals/pdo/implementing.xml?r1=1.1&r2=1.2&ty=u
Index: phpdoc/en/internals/pdo/implementing.xml
diff -u phpdoc/en/internals/pdo/implementing.xml:1.1 
phpdoc/en/internals/pdo/implementing.xml:1.2
--- phpdoc/en/internals/pdo/implementing.xml:1.1        Mon Oct  3 18:02:14 2005
+++ phpdoc/en/internals/pdo/implementing.xml    Thu Dec  8 07:10:51 2005
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.1 $ -->
+<!-- $Revision: 1.2 $ -->
 <sect1 id="internals.pdo.implementing">
  <title>Fleshing out your skeleton</title>
  <sect2>
@@ -1042,7 +1042,7 @@
     of the parameters.
    </para>
    <para>
-    For all other events, PDO may call you multple times as the script issues
+    For all other events, PDO may call you multiple times as the script issues
     <function>PDOStatement::execute</function> and
     <function>PDOStatement::fetch</function> calls.
    </para>
http://cvs.php.net/diff.php/phpdoc/en/internals/pdo/preparation.xml?r1=1.1&r2=1.2&ty=u
Index: phpdoc/en/internals/pdo/preparation.xml
diff -u phpdoc/en/internals/pdo/preparation.xml:1.1 
phpdoc/en/internals/pdo/preparation.xml:1.2
--- phpdoc/en/internals/pdo/preparation.xml:1.1 Mon Oct  3 18:02:16 2005
+++ phpdoc/en/internals/pdo/preparation.xml     Thu Dec  8 07:10:51 2005
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.1 $ -->
+<!-- $Revision: 1.2 $ -->
 <sect1 id="internals.pdo.preparation">
  <title>Preparation and Housekeeping</title>
  <sect2>
@@ -162,7 +162,7 @@
       <para>
        This header file typically contains type definitions and function
        declarations specific to the driver implementation. It also should
-       contain the db specicfic definitions of a pdo_SKEL_handle and
+       contain the db specific definitions of a pdo_SKEL_handle and
        pdo_SKEL_stmt structures. These are the names of the private
        data structures that are then referenced by the driver_data members
        of the handle and statement structures.
http://cvs.php.net/diff.php/phpdoc/en/internals/zendapi/arguments.xml?r1=1.1&r2=1.2&ty=u
Index: phpdoc/en/internals/zendapi/arguments.xml
diff -u phpdoc/en/internals/zendapi/arguments.xml:1.1 
phpdoc/en/internals/zendapi/arguments.xml:1.2
--- phpdoc/en/internals/zendapi/arguments.xml:1.1       Sun Aug 21 12:27:06 2005
+++ phpdoc/en/internals/zendapi/arguments.xml   Thu Dec  8 07:10:51 2005
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="ISO-8859-1" ?>
- <!-- $Revision: 1.1 $ -->
+ <!-- $Revision: 1.2 $ -->
  <sect1 id="zend.arguments"> 
   <title>Accepting Arguments</title> 
   <para>
@@ -90,7 +90,7 @@
     tedious. It would also be nice to have standardized error checking
     and error messages. Since PHP 4.1.0, there is a way to do just
     that by using the new parameter parsing API. It greatly simplifies
-    the process of receiving parameteres, but it has a drawback in
+    the process of receiving parameters, but it has a drawback in
     that it can't be used for functions that expect variable number of
     parameters. But since the vast majority of functions do not fall
     into those categories, this parsing API is recommended as the new
http://cvs.php.net/diff.php/phpdoc/en/internals/zendapi/variables.xml?r1=1.2&r2=1.3&ty=u
Index: phpdoc/en/internals/zendapi/variables.xml
diff -u phpdoc/en/internals/zendapi/variables.xml:1.2 
phpdoc/en/internals/zendapi/variables.xml:1.3
--- phpdoc/en/internals/zendapi/variables.xml:1.2       Mon Oct 17 08:36:02 2005
+++ phpdoc/en/internals/zendapi/variables.xml   Thu Dec  8 07:10:52 2005
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="ISO-8859-1" ?>
- <!-- $Revision: 1.2 $ -->
+ <!-- $Revision: 1.3 $ -->
  <sect1 id="zend.variables"> 
   <title>Creating Variables</title>
   <para>
@@ -956,7 +956,7 @@
     <literal>RETURN_RESOURE</literal> to return it to the user:
     <programlisting>    RETURN_RESOURCE(rsrc_id)</programlisting>
     <note><para>It is common practice that if you want to return the resource
-      immidiately to the user you specify the <literal>return_value</literal>
+      immediately to the user you specify the <literal>return_value</literal>
       as the <literal>zval *</literal> container.
      </para>
     </note>
http://cvs.php.net/diff.php/phpdoc/en/language/oop5/decon.xml?r1=1.10&r2=1.11&ty=u
Index: phpdoc/en/language/oop5/decon.xml
diff -u phpdoc/en/language/oop5/decon.xml:1.10 
phpdoc/en/language/oop5/decon.xml:1.11
--- phpdoc/en/language/oop5/decon.xml:1.10      Mon Aug 29 11:58:52 2005
+++ phpdoc/en/language/oop5/decon.xml   Thu Dec  8 07:10:52 2005
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.10 $ -->
+<!-- $Revision: 1.11 $ -->
  <sect1 id="language.oop5.decon">
   <title>Constructors and Destructors</title>
 
@@ -105,7 +105,7 @@
    </note>
    <note>
     <para>
-     Attempting to throw an exception from a desctructor causes a fatal error.
+     Attempting to throw an exception from a destructor causes a fatal error.
     </para>
    </note>
   </sect2>
http://cvs.php.net/diff.php/phpdoc/en/reference/apc/ini.xml?r1=1.4&r2=1.5&ty=u
Index: phpdoc/en/reference/apc/ini.xml
diff -u phpdoc/en/reference/apc/ini.xml:1.4 phpdoc/en/reference/apc/ini.xml:1.5
--- phpdoc/en/reference/apc/ini.xml:1.4 Fri Nov 18 15:56:46 2005
+++ phpdoc/en/reference/apc/ini.xml     Thu Dec  8 07:10:52 2005
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.4 $ -->
+<!-- $Revision: 1.5 $ -->
 <section id="apc.configuration">
  &reftitle.runtime;
  &extension.runtime;
@@ -206,7 +206,7 @@
      <para>
       The number of seconds that a cache entry may
       remain on the garbage-collection list. This value
-      provides a failsafe in the event that a server
+      provides a fail-safe in the event that a server
       process dies while executing a cached source file;
       if that source file is modified, the memory
       allocated for the old version will not be
http://cvs.php.net/diff.php/phpdoc/en/reference/gnupg/reference.xml?r1=1.3&r2=1.4&ty=u
Index: phpdoc/en/reference/gnupg/reference.xml
diff -u phpdoc/en/reference/gnupg/reference.xml:1.3 
phpdoc/en/reference/gnupg/reference.xml:1.4
--- phpdoc/en/reference/gnupg/reference.xml:1.3 Sun Oct 30 01:34:36 2005
+++ phpdoc/en/reference/gnupg/reference.xml     Thu Dec  8 07:10:53 2005
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
 <!-- Purpose: utilspec.nontext -->
 <!-- Membership: pecl -->
 <!-- State: beta -->
@@ -38,7 +38,7 @@
    &reftitle.notes;
    <para>
     This extension makes use of the keyring of the current user. This keyring
-    is normaly located in ~./.gnupg/.
+    is normally located in ~./.gnupg/.
     To specify a custom location, store the path to the keyring in the
     environment variable GNUPGHOME. See <link
     linkend='function.putenv'>putenv</link> for more information how to do
http://cvs.php.net/diff.php/phpdoc/en/reference/gnupg/functions/gnupg-geterror.xml?r1=1.2&r2=1.3&ty=u
Index: phpdoc/en/reference/gnupg/functions/gnupg-geterror.xml
diff -u phpdoc/en/reference/gnupg/functions/gnupg-geterror.xml:1.2 
phpdoc/en/reference/gnupg/functions/gnupg-geterror.xml:1.3
--- phpdoc/en/reference/gnupg/functions/gnupg-geterror.xml:1.2  Sun Oct 30 
01:34:39 2005
+++ phpdoc/en/reference/gnupg/functions/gnupg-geterror.xml      Thu Dec  8 
07:10:53 2005
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
 <refentry id="function.gnupg-geterror">
  <refnamediv>
   <refname>gnupg_geterror</refname>
@@ -17,7 +17,7 @@
  <refsect1 role="returnvalues">
   &reftitle.returnvalues;
   <para>
-   Returns an errortext, if an error has occured, otherwise &false;.
+   Returns an errortext, if an error has occurred, otherwise &false;.
   </para>
  </refsect1>
 
http://cvs.php.net/diff.php/phpdoc/en/reference/gnupg/functions/gnupg-keyinfo.xml?r1=1.3&r2=1.4&ty=u
Index: phpdoc/en/reference/gnupg/functions/gnupg-keyinfo.xml
diff -u phpdoc/en/reference/gnupg/functions/gnupg-keyinfo.xml:1.3 
phpdoc/en/reference/gnupg/functions/gnupg-keyinfo.xml:1.4
--- phpdoc/en/reference/gnupg/functions/gnupg-keyinfo.xml:1.3   Sun Oct 30 
01:34:39 2005
+++ phpdoc/en/reference/gnupg/functions/gnupg-keyinfo.xml       Thu Dec  8 
07:10:53 2005
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
 <refentry id="function.gnupg-keyinfo">
  <refnamediv>
   <refname>gnupg_keyinfo</refname>
@@ -19,7 +19,7 @@
   &reftitle.returnvalues;
   <para>
    Returns an array with information about all keys that matches the given
-   pattern or &false;, if an error has occured.
+   pattern or &false;, if an error has occurred.
   </para>
  </refsect1>
  
http://cvs.php.net/diff.php/phpdoc/en/reference/gnupg/functions/gnupg-setarmor.xml?r1=1.3&r2=1.4&ty=u
Index: phpdoc/en/reference/gnupg/functions/gnupg-setarmor.xml
diff -u phpdoc/en/reference/gnupg/functions/gnupg-setarmor.xml:1.3 
phpdoc/en/reference/gnupg/functions/gnupg-setarmor.xml:1.4
--- phpdoc/en/reference/gnupg/functions/gnupg-setarmor.xml:1.3  Sun Oct 30 
01:34:39 2005
+++ phpdoc/en/reference/gnupg/functions/gnupg-setarmor.xml      Thu Dec  8 
07:10:53 2005
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
 <refentry id="function.gnupg-setarmor">
  <refnamediv>
   <refname>gnupg_setarmor</refname>
@@ -14,7 +14,7 @@
    <methodparam><type>int</type><parameter>armor</parameter></methodparam>
   </methodsynopsis>
   <para>
-   Pass a non-zero interger-value to this function to enable armored-output
+   Pass a non-zero integer-value to this function to enable armored-output
    (default).
    Pass 0 to disable armored output.
   </para>
http://cvs.php.net/diff.php/phpdoc/en/reference/image/functions/imagecreatetruecolor.xml?r1=1.9&r2=1.10&ty=u
Index: phpdoc/en/reference/image/functions/imagecreatetruecolor.xml
diff -u phpdoc/en/reference/image/functions/imagecreatetruecolor.xml:1.9 
phpdoc/en/reference/image/functions/imagecreatetruecolor.xml:1.10
--- phpdoc/en/reference/image/functions/imagecreatetruecolor.xml:1.9    Wed Oct 
 5 11:28:12 2005
+++ phpdoc/en/reference/image/functions/imagecreatetruecolor.xml        Thu Dec 
 8 07:10:53 2005
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.9 $ -->
+<!-- $Revision: 1.10 $ -->
 <!-- splitted from ./en/functions/image.xml, last change in rev 1.2 -->
  <refentry id="function.imagecreatetruecolor">
   <refnamediv>
@@ -22,7 +22,7 @@
     Depending on your PHP and GD versions this function is defined or not. With
     PHP 4.0.6 through 4.1.x this function always exists if the GD module is
     loaded, but calling it without GD2 being installed PHP will issue a fatal
-    error and exit. With PHP 4.2.x this behaviour is differnet in issueing a
+    error and exit. With PHP 4.2.x this behaviour is different in issuing a
     warning instead of an error. Other versions only define this function, if
     the correct GD version is installed.
    </para>
http://cvs.php.net/diff.php/phpdoc/en/reference/pdo/reference.xml?r1=1.45&r2=1.46&ty=u
Index: phpdoc/en/reference/pdo/reference.xml
diff -u phpdoc/en/reference/pdo/reference.xml:1.45 
phpdoc/en/reference/pdo/reference.xml:1.46
--- phpdoc/en/reference/pdo/reference.xml:1.45  Mon Nov 28 04:24:46 2005
+++ phpdoc/en/reference/pdo/reference.xml       Thu Dec  8 07:10:53 2005
@@ -1,5 +1,5 @@
 <?xml version='1.0' encoding='iso-8859-1'?>
-<!-- $Revision: 1.45 $ -->
+<!-- $Revision: 1.46 $ -->
 <!-- Purpose: database.abstract -->
 <!-- Membership: pecl, bundled -->
 
@@ -458,7 +458,7 @@
        executed multiple times with the same or different parameters. When the
        query is prepared, the database will analyze, compile and optimize it's
        plan for executing the query. For complex queries this process can take
-       up enough time that it will noticably slow down your application if you
+       up enough time that it will noticeably slow down your application if you
        need to repeat the same query many times with different parameters. By
        using a prepared statement you avoid repeating the
        analyze/compile/optimize cycle. In short, prepared statements use fewer
http://cvs.php.net/diff.php/phpdoc/en/reference/ssh2/functions/ssh2-publickey-list.xml?r1=1.3&r2=1.4&ty=u
Index: phpdoc/en/reference/ssh2/functions/ssh2-publickey-list.xml
diff -u phpdoc/en/reference/ssh2/functions/ssh2-publickey-list.xml:1.3 
phpdoc/en/reference/ssh2/functions/ssh2-publickey-list.xml:1.4
--- phpdoc/en/reference/ssh2/functions/ssh2-publickey-list.xml:1.3      Sun Jul 
24 01:44:27 2005
+++ phpdoc/en/reference/ssh2/functions/ssh2-publickey-list.xml  Thu Dec  8 
07:10:54 2005
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
 <!-- Generated by xml_proto.php v2.2. Found in /scripts directory of phpdoc. 
-->
 <refentry id="function.ssh2-publickey-list">
  <refnamediv>
@@ -39,7 +39,7 @@
  <refsect1 role="returnvalues">
   &reftitle.returnvalues;
   <para>
-   Returns a numericly indexed array of keys,
+   Returns a numerically indexed array of keys,
    each of which is an associative array containing:
    name, blob, and attrs elements.
   </para>
http://cvs.php.net/diff.php/phpdoc/en/reference/stats/functions/stats-cdf-beta.xml?r1=1.1&r2=1.2&ty=u
Index: phpdoc/en/reference/stats/functions/stats-cdf-beta.xml
diff -u phpdoc/en/reference/stats/functions/stats-cdf-beta.xml:1.1 
phpdoc/en/reference/stats/functions/stats-cdf-beta.xml:1.2
--- phpdoc/en/reference/stats/functions/stats-cdf-beta.xml:1.1  Fri Dec  2 
16:27:05 2005
+++ phpdoc/en/reference/stats/functions/stats-cdf-beta.xml      Thu Dec  8 
07:10:54 2005
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.1 $ -->
+<!-- $Revision: 1.2 $ -->
 <!-- Generated by xml_proto.php v2.3. Found in /scripts directory of phpdoc. 
-->
 <refentry id="function.stats-cdf-beta">
  <refnamediv>
@@ -26,7 +26,7 @@
      Digit Computation of the Incomplete  Beta  Function Ratios.  ACM
      Trans. Math.  Softw. 18 (1993), 360-373.
 
-     Computation of other parameters involve a seach for a value that
+     Computation of other parameters involve a search for a value that
      produces  the desired  value  of P.   The search relies  on  the
      monotinicity of P with the other parameter.
 
http://cvs.php.net/diff.php/phpdoc/en/reference/xmlreader/functions/xmlreader-movetoelement.xml?r1=1.1&r2=1.2&ty=u
Index: phpdoc/en/reference/xmlreader/functions/xmlreader-movetoelement.xml
diff -u phpdoc/en/reference/xmlreader/functions/xmlreader-movetoelement.xml:1.1 
phpdoc/en/reference/xmlreader/functions/xmlreader-movetoelement.xml:1.2
--- phpdoc/en/reference/xmlreader/functions/xmlreader-movetoelement.xml:1.1     
Mon Jul 18 22:42:45 2005
+++ phpdoc/en/reference/xmlreader/functions/xmlreader-movetoelement.xml Thu Dec 
 8 07:10:54 2005
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.1 $ -->
+<!-- $Revision: 1.2 $ -->
 <refentry id="function.xmlreader-movetoelement">
  <refnamediv>
   <refname>XMLReader->moveToElement()</refname>
@@ -16,7 +16,7 @@
   </classsynopsis>
   <para>
    Moves cursor to the parent Element of current Attribute. 
-   Returns TRUE if sucessful and FALSE if it fails or not positioned on 
+   Returns &true; if successful and &false; if it fails or not positioned on 
    Attribute when this method is called.
   </para>
  </refsect1>

Reply via email to