From 31c9712610c7eec1b2f376fd3bbf5839e4234d64 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Wed, 2 Feb 2022 09:14:26 +0100 Subject: [PATCH] doc: Fix mistake in PL/Python documentation Small thinko introduced by 94aceed317730953476bec490ce0148b2af3c383 Reported-by: nassehk@gmail.com --- doc/src/sgml/plpython.sgml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/sgml/plpython.sgml b/doc/src/sgml/plpython.sgml index c1651000a3..b92c8662bf 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;