diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2022-02-02 09:14:26 +0100 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2022-02-02 09:16:36 +0100 |
commit | 7792c0c61787fa7341d0f004f062f27ab93d455a (patch) | |
tree | 0144d9f491fb56dd719728e18386c9b59e364735 | |
parent | a72c430120cf73e0788526641091a93d6835588b (diff) | |
download | postgresql-7792c0c61787fa7341d0f004f062f27ab93d455a.tar.gz postgresql-7792c0c61787fa7341d0f004f062f27ab93d455a.zip |
doc: Fix mistake in PL/Python documentation
Small thinko introduced by 94aceed317730953476bec490ce0148b2af3c383
Reported-by: nassehk@gmail.com
-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 c84e93a8f89..82ff387ef4f 100644 --- a/doc/src/sgml/plpython.sgml +++ b/doc/src/sgml/plpython.sgml @@ -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> |