doc: Minor wording changes
authorPeter Eisentraut
Fri, 29 Apr 2016 17:03:58 +0000 (13:03 -0400)
committerPeter Eisentraut
Fri, 29 Apr 2016 17:03:58 +0000 (13:03 -0400)
From: Dmitry Igrishin 

doc/src/sgml/trigger.sgml

index 52f28bca7a683f86740fb86b0ad7a3e5c7819ef3..22966c06dc0142e7e65a142ddcdc663327956883 100644 (file)
     If an INSERT contains an ON CONFLICT
     DO UPDATE clause, it is possible that the effects of all
     row-level BEFORE INSERT triggers
-    and all row-level BEFORE UPDATE triggers can
+    and all row-level BEFORE UPDATE triggers can
     both be applied in a way that is apparent from the final state of
     the updated row, if an EXCLUDED column is referenced.
     There need not be an EXCLUDED column reference for
-    both sets of BEFORE row-level triggers to execute, though.  The
+    both sets of row-level BEFORE triggers to execute, though.  The
     possibility of surprising outcomes should be considered when there
     are both BEFORE INSERT and
     BEFORE UPDATE row-level triggers
       
        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
+       BEFORE triggers, whereas all
        modifications are visible to statement-level AFTER
        triggers.