summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut2022-02-02 08:14:26 +0000
committerPeter Eisentraut2022-02-02 08:16:19 +0000
commit31c9712610c7eec1b2f376fd3bbf5839e4234d64 (patch)
treed5f3c2162e8d41a23d23fe7927757e221c891510
parent4d7d196ff69365041579024848f34ee57ac75223 (diff)
doc: Fix mistake in PL/Python documentation
Small thinko introduced by 94aceed317730953476bec490ce0148b2af3c383 Reported-by: nassehk@gmail.com
-rw-r--r--doc/src/sgml/plpython.sgml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/plpython.sgml b/doc/src/sgml/plpython.sgml
index c1651000a3d..b92c8662bf2 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>