doc: Fix mistake in PL/Python documentation
authorPeter Eisentraut <[email protected]>
Wed, 2 Feb 2022 08:14:26 +0000 (09:14 +0100)
committerPeter Eisentraut <[email protected]>
Wed, 2 Feb 2022 08:16:36 +0000 (09:16 +0100)
Small thinko introduced by 94aceed317730953476bec490ce0148b2af3c383

Reported-by: [email protected]
doc/src/sgml/plpython.sgml

index c84e93a8f89fd3b2b31601c28ba244fc3ef384e3..82ff387ef4f39acab56699aa1408da39cc13cdc1 100644 (file)
@@ -569,7 +569,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>