aboutsummaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2020-10-26 22:38:11 -0400
committerBruce Momjian <bruce@momjian.us>2020-10-26 22:38:11 -0400
commit2f17fe431860fc434084d99d8b789e6ec7e6977b (patch)
tree9532a54fce30557cba6cf2e051c39d041b773c4d /doc/src
parente9661f2b0f3310d8bacc3f0802b309f599300cfb (diff)
downloadpostgresql-2f17fe431860fc434084d99d8b789e6ec7e6977b.tar.gz
postgresql-2f17fe431860fc434084d99d8b789e6ec7e6977b.zip
doc: simplify wording of function error affects
Reported-by: bob.henkel@gmail.com Discussion: https://postgr.es/m/160324449781.693.8298142858847611071@wrigleys.postgresql.org Backpatch-through: 9.5
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/plpgsql.sgml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/plpgsql.sgml b/doc/src/sgml/plpgsql.sgml
index 94a3b36458d..9ec168b0c4c 100644
--- a/doc/src/sgml/plpgsql.sgml
+++ b/doc/src/sgml/plpgsql.sgml
@@ -2670,8 +2670,8 @@ NOTICE: row = {10,11,12}
<para>
By default, any error occurring in a <application>PL/pgSQL</application>
- function aborts execution of the function, and indeed of the
- surrounding transaction as well. You can trap errors and recover
+ function aborts execution of the function and the
+ surrounding transaction. You can trap errors and recover
from them by using a <command>BEGIN</command> block with an
<literal>EXCEPTION</literal> clause. The syntax is an extension of the
normal syntax for a <command>BEGIN</command> block: