Commit 3e5da0a8 authored by Tom Lane's avatar Tom Lane

Fix typos noted by Halley Pacheco de Oliveira.

parent 0902ece5
<!-- <!--
$PostgreSQL: pgsql/doc/src/sgml/ref/create_trigger.sgml,v 1.38 2003/11/29 19:51:38 pgsql Exp $ $PostgreSQL: pgsql/doc/src/sgml/ref/create_trigger.sgml,v 1.39 2003/12/01 17:58:27 tgl Exp $
PostgreSQL documentation PostgreSQL documentation
--> -->
...@@ -33,11 +33,11 @@ CREATE TRIGGER <replaceable class="PARAMETER">name</replaceable> { BEFORE | AFTE ...@@ -33,11 +33,11 @@ CREATE TRIGGER <replaceable class="PARAMETER">name</replaceable> { BEFORE | AFTE
<command>CREATE TRIGGER</command> creates a new trigger. The <command>CREATE TRIGGER</command> creates a new trigger. The
trigger will be associated with the specified table and will trigger will be associated with the specified table and will
execute the specified function <replaceable execute the specified function <replaceable
class="parameter">func</replaceable> when certain events occur. class="parameter">funcname</replaceable> when certain events occur.
</para> </para>
<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 operation is attempted on a row (before constraints are checked and
the <command>INSERT</command>, <command>UPDATE</command>, or the <command>INSERT</command>, <command>UPDATE</command>, or
<command>DELETE</command> is attempted) or after the operation has <command>DELETE</command> is attempted) or after the operation has
...@@ -143,7 +143,7 @@ CREATE TRIGGER <replaceable class="PARAMETER">name</replaceable> { BEFORE | AFTE ...@@ -143,7 +143,7 @@ CREATE TRIGGER <replaceable class="PARAMETER">name</replaceable> { BEFORE | AFTE
</varlistentry> </varlistentry>
<varlistentry> <varlistentry>
<term><replaceable class="parameter">func</replaceable></term> <term><replaceable class="parameter">funcname</replaceable></term>
<listitem> <listitem>
<para> <para>
A user-supplied function that is declared as taking no arguments A user-supplied function that is declared as taking no arguments
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment