From: Peter Eisentraut Date: Wed, 2 Feb 2022 08:14:26 +0000 (+0100) Subject: doc: Fix mistake in PL/Python documentation X-Git-Tag: REL_14_2~9 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ee57467cb6b2ce1e25d367cbd64cc60ae9ba0eb3;p=thirdparty%2Fpostgresql.git doc: Fix mistake in PL/Python documentation Small thinko introduced by 94aceed317730953476bec490ce0148b2af3c383 Reported-by: nassehk@gmail.com --- diff --git a/doc/src/sgml/plpython.sgml b/doc/src/sgml/plpython.sgml index c2540b8ec9d..b67f8f4aaed 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;