diff options
author | Peter Eisentraut | 2022-02-02 08:14:26 +0000 |
---|---|---|
committer | Peter Eisentraut | 2022-02-02 08:14:26 +0000 |
commit | cb2bab14fff5b4e1c065b8546323f1a9fefc9611 (patch) | |
tree | 81a02d82683695a356678602cc479f2564f37ee8 | |
parent | 4d7c3e34475a750d0529f5912deedc9b1a1eedd8 (diff) |
doc: Fix mistake in PL/Python documentation
Small thinko introduced by 94aceed317730953476bec490ce0148b2af3c383
Reported-by: [email protected]
-rw-r--r-- | doc/src/sgml/plpython.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/plpython.sgml b/doc/src/sgml/plpython.sgml index c2540b8ec9..b67f8f4aae 100644 --- a/doc/src/sgml/plpython.sgml +++ b/doc/src/sgml/plpython.sgml @@ -573,7 +573,7 @@ CREATE FUNCTION make_pair (name text, value integer) RETURNS named_value AS $$ return ( name, value ) - # or alternatively, as tuple: return [ name, value ] + # or alternatively, as list: return [ name, value ] $$ LANGUAGE plpythonu; </programlisting> |