Skip to content

Commit 122b994

Browse files
committed
doc: Small wording change for clarity
From: Martín Marqués <martin@2ndquadrant.com>
1 parent 8a13d5e commit 122b994

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/src/sgml/plpgsql.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ $$ LANGUAGE plpgsql;
528528
</para>
529529

530530
<para>
531-
The same effect can be had by declaring one or more output parameters as
531+
The same effect can be obtained by declaring one or more output parameters as
532532
polymorphic types. In this case the
533533
special <literal>$0</literal> parameter is not used; the output
534534
parameters themselves serve the same purpose. For example:

doc/src/sgml/ref/create_function.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -753,7 +753,7 @@ SELECT * FROM dup(42);
753753
malicious users from creating objects that mask objects used by the
754754
function. Particularly important in this regard is the
755755
temporary-table schema, which is searched first by default, and
756-
is normally writable by anyone. A secure arrangement can be had
756+
is normally writable by anyone. A secure arrangement can be obtained
757757
by forcing the temporary schema to be searched last. To do this,
758758
write <literal>pg_temp</><indexterm><primary>pg_temp</><secondary>securing functions</></> as the last entry in <varname>search_path</>.
759759
This function illustrates safe usage:

0 commit comments

Comments
 (0)