cucinato                Sun Aug 25 05:05:49 2002 EDT

  Modified files:              
    /phpdoc/en/reference/pgsql/functions        pg-free-result.xml 
                                                pg-lo-open.xml 
                                                pg-lo-unlink.xml pg-select.xml 
  Log:
  Typo fixes
  
  
Index: phpdoc/en/reference/pgsql/functions/pg-free-result.xml
diff -u phpdoc/en/reference/pgsql/functions/pg-free-result.xml:1.3 
phpdoc/en/reference/pgsql/functions/pg-free-result.xml:1.4
--- phpdoc/en/reference/pgsql/functions/pg-free-result.xml:1.3  Thu May 23 09:18:07 
2002
+++ phpdoc/en/reference/pgsql/functions/pg-free-result.xml      Sun Aug 25 05:05:49 
+2002
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
 <!-- splitted from ./en/functions/pgsql.xml, last change in rev 1.2 -->
   <refentry id="function.pg-free-result">
    <refnamediv>
@@ -20,8 +20,7 @@
      need the result data anymore in a script, you may call
      <function>pg_free_result</function> with the
      <parameter>result</parameter> resource as an argument and the
-     associated result memory will be freed. It returns true on success
-     and false if an error occurs.
+     associated result memory will be freed. &return.success;
     </para>
     <note>
      <para>
Index: phpdoc/en/reference/pgsql/functions/pg-lo-open.xml
diff -u phpdoc/en/reference/pgsql/functions/pg-lo-open.xml:1.2 
phpdoc/en/reference/pgsql/functions/pg-lo-open.xml:1.3
--- phpdoc/en/reference/pgsql/functions/pg-lo-open.xml:1.2      Wed Apr 17 02:43:20 
2002
+++ phpdoc/en/reference/pgsql/functions/pg-lo-open.xml  Sun Aug 25 05:05:49 2002
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
 <!-- splitted from ./en/functions/pgsql.xml, last change in rev 1.2 -->
   <refentry id="function.pg-lo-open">
    <refnamediv>
@@ -15,7 +15,7 @@
       <methodparam><type>string</type><parameter>mode</parameter></methodparam>
      </methodsynopsis>
     <para>
-     <function>pg_lo_open</function> open a Large Object and
+     <function>pg_lo_open</function> opens a Large Object and
      returns large object resource. The resource encapsulates
      information about the connection. 
      <parameter>oid</parameter> specifies a valid large object oid and
Index: phpdoc/en/reference/pgsql/functions/pg-lo-unlink.xml
diff -u phpdoc/en/reference/pgsql/functions/pg-lo-unlink.xml:1.2 
phpdoc/en/reference/pgsql/functions/pg-lo-unlink.xml:1.3
--- phpdoc/en/reference/pgsql/functions/pg-lo-unlink.xml:1.2    Wed Apr 17 02:43:21 
2002
+++ phpdoc/en/reference/pgsql/functions/pg-lo-unlink.xml        Sun Aug 25 05:05:49 
+2002
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
 <!-- splitted from ./en/functions/pgsql.xml, last change in rev 1.2 -->
   <refentry id="function.pg-lo-unlink">
    <refnamediv>
@@ -15,8 +15,7 @@
      </methodsynopsis>
     <para>
      <function>pg_lo_unlink</function> deletes a large object with the
-     <parameter>oid</parameter>. It returns &true; on success,
-     otherwise returns &false;.
+     <parameter>oid</parameter>. &return.success;
     </para>
     <para>
      To use the large object (lo) interface, it is necessary to
Index: phpdoc/en/reference/pgsql/functions/pg-select.xml
diff -u phpdoc/en/reference/pgsql/functions/pg-select.xml:1.4 
phpdoc/en/reference/pgsql/functions/pg-select.xml:1.5
--- phpdoc/en/reference/pgsql/functions/pg-select.xml:1.4       Wed Apr 24 04:31:06 
2002
+++ phpdoc/en/reference/pgsql/functions/pg-select.xml   Sun Aug 25 05:05:49 2002
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.4 $ -->
+<!-- $Revision: 1.5 $ -->
 <!-- splitted from ./en/functions/pgsql.xml, last change in rev 1.80 -->
   <refentry id='function.pg-select'>
    <refnamediv>
@@ -24,7 +24,7 @@
      array contains all records and fields that match the condition
      specified by <literal>assoc_array</literal>. If
      <literal>options</literal> is specified,
-     <function>pg_convert</function> s applied to
+     <function>pg_convert</function> is applied to
      <literal>assoc_array</literal> with specified option.
     </para>
     <example>
@@ -33,7 +33,7 @@
 <![CDATA[
 <?php 
     $db = pg_connect ('dbname=foo');
-    // This is safe, since $_POST is converted autotmatically
+    // This is safe, since $_POST is converted automatically
     $rec = pg_select($db, 'post_log', $_POST);
     if ($rec) {
         echo "Records selected\n";



-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to