summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut2016-04-29 17:03:58 +0000
committerPeter Eisentraut2016-04-29 17:03:58 +0000
commit82881b2b432c9433b45abc96acf49d5d690eb918 (patch)
tree849ae977b9d74f078941f618e177be1ec67af2bc
parenta03bda323b0713aeaacfd0050be76df9e6b06a13 (diff)
doc: Minor wording changes
From: Dmitry Igrishin <[email protected]>
-rw-r--r--doc/src/sgml/trigger.sgml6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/trigger.sgml b/doc/src/sgml/trigger.sgml
index 52f28bca7a..22966c06dc 100644
--- a/doc/src/sgml/trigger.sgml
+++ b/doc/src/sgml/trigger.sgml
@@ -125,11 +125,11 @@
If an <command>INSERT</command> contains an <literal>ON CONFLICT
DO UPDATE</> clause, it is possible that the effects of all
row-level <literal>BEFORE</> <command>INSERT</command> triggers
- and all row-level BEFORE <command>UPDATE</command> triggers can
+ and all row-level <literal>BEFORE</literal> <command>UPDATE</command> triggers can
both be applied in a way that is apparent from the final state of
the updated row, if an <varname>EXCLUDED</> column is referenced.
There need not be an <varname>EXCLUDED</> column reference for
- both sets of BEFORE row-level triggers to execute, though. The
+ both sets of row-level <literal>BEFORE</literal> triggers to execute, though. The
possibility of surprising outcomes should be considered when there
are both <literal>BEFORE</> <command>INSERT</command> and
<literal>BEFORE</> <command>UPDATE</command> row-level triggers
@@ -327,7 +327,7 @@
<para>
Statement-level triggers follow simple visibility rules: none of
the changes made by a statement are visible to statement-level
- triggers that are invoked before the statement, whereas all
+ <literal>BEFORE</literal> triggers, whereas all
modifications are visible to statement-level <literal>AFTER</>
triggers.
</para>