From: Tom Lane Date: Mon, 1 Dec 2003 17:58:38 +0000 (+0000) Subject: Fix typos noted by Halley Pacheco de Oliveira. X-Git-Tag: REL7_4_1~75 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c0f3fdfb994a708232bc134ade3f24314b68a674;p=thirdparty%2Fpostgresql.git Fix typos noted by Halley Pacheco de Oliveira. --- diff --git a/doc/src/sgml/ref/create_trigger.sgml b/doc/src/sgml/ref/create_trigger.sgml index 7bbc7d99276..3c9feadaf81 100644 --- a/doc/src/sgml/ref/create_trigger.sgml +++ b/doc/src/sgml/ref/create_trigger.sgml @@ -1,5 +1,5 @@ @@ -33,11 +33,11 @@ CREATE TRIGGER name { BEFORE | AFTE CREATE TRIGGER creates a new trigger. The trigger will be associated with the specified table and will execute the specified function func when certain events occur. + class="parameter">funcname when certain events occur. - 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 INSERT, UPDATE, or DELETE is attempted) or after the operation has @@ -143,7 +143,7 @@ CREATE TRIGGER name { BEFORE | AFTE - func + funcname A user-supplied function that is declared as taking no arguments