Typo fixes

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@93472 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Marco Cucinato 2002-08-25 09:05:49 +00:00
parent 42379a79f4
commit d108553ede
4 changed files with 9 additions and 11 deletions

View file

@ -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>

View file

@ -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

View file

@ -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

View file

@ -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";