Skip to content

Commit 3e5da0a

Browse files
committed
Fix typos noted by Halley Pacheco de Oliveira.
1 parent 0902ece commit 3e5da0a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/src/sgml/ref/create_trigger.sgml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$PostgreSQL: pgsql/doc/src/sgml/ref/create_trigger.sgml,v 1.38 2003/11/29 19:51:38 pgsql Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/ref/create_trigger.sgml,v 1.39 2003/12/01 17:58:27 tgl Exp $
33
PostgreSQL documentation
44
-->
55

@@ -33,11 +33,11 @@ CREATE TRIGGER <replaceable class="PARAMETER">name</replaceable> { BEFORE | AFTE
3333
<command>CREATE TRIGGER</command> creates a new trigger. The
3434
trigger will be associated with the specified table and will
3535
execute the specified function <replaceable
36-
class="parameter">func</replaceable> when certain events occur.
36+
class="parameter">funcname</replaceable> when certain events occur.
3737
</para>
3838

3939
<para>
40-
The trigger can be specified to fire either before before the
40+
The trigger can be specified to fire either before the
4141
operation is attempted on a row (before constraints are checked and
4242
the <command>INSERT</command>, <command>UPDATE</command>, or
4343
<command>DELETE</command> is attempted) or after the operation has
@@ -143,7 +143,7 @@ CREATE TRIGGER <replaceable class="PARAMETER">name</replaceable> { BEFORE | AFTE
143143
</varlistentry>
144144

145145
<varlistentry>
146-
<term><replaceable class="parameter">func</replaceable></term>
146+
<term><replaceable class="parameter">funcname</replaceable></term>
147147
<listitem>
148148
<para>
149149
A user-supplied function that is declared as taking no arguments

0 commit comments

Comments
 (0)