]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Fix typos noted by Halley Pacheco de Oliveira.
authorTom Lane <tgl@sss.pgh.pa.us>
Mon, 1 Dec 2003 17:58:38 +0000 (17:58 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Mon, 1 Dec 2003 17:58:38 +0000 (17:58 +0000)
doc/src/sgml/ref/create_trigger.sgml

index 7bbc7d9927619cd396b81ca6bd87c8f320af69e8..3c9feadaf8119cf612dc5dd7c35e45eb6b68ed07 100644 (file)
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_trigger.sgml,v 1.37 2003/09/22 00:16:57 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_trigger.sgml,v 1.37.2.1 2003/12/01 17:58:38 tgl Exp $
 PostgreSQL documentation
 -->
 
@@ -33,11 +33,11 @@ CREATE TRIGGER <replaceable class="PARAMETER">name</replaceable> { BEFORE | AFTE
    <command>CREATE TRIGGER</command> creates a new trigger.  The
    trigger will be associated with the specified table and will
    execute the specified function <replaceable
-   class="parameter">func</replaceable> when certain events occur.
+   class="parameter">funcname</replaceable> when certain events occur.
   </para>
 
   <para>
-   The trigger can be specified to fire either before before the
+   The trigger can be specified to fire either before the
    operation is attempted on a row (before constraints are checked and
    the <command>INSERT</command>, <command>UPDATE</command>, or
    <command>DELETE</command> is attempted) or after the operation has
@@ -143,7 +143,7 @@ CREATE TRIGGER <replaceable class="PARAMETER">name</replaceable> { BEFORE | AFTE
    </varlistentry>
 
    <varlistentry>
-    <term><replaceable class="parameter">func</replaceable></term>
+    <term><replaceable class="parameter">funcname</replaceable></term>
     <listitem>
      <para>
       A user-supplied function that is declared as taking no arguments