diff options
author | Peter Eisentraut | 2022-02-02 08:14:26 +0000 |
---|---|---|
committer | Peter Eisentraut | 2022-02-02 08:16:31 +0000 |
commit | 0b25f5e444ff471135bcf58cbb1e4cbda165efa5 (patch) | |
tree | 5c8e98c18f6177cdbc1667e749870e0e6ef08dc7 /doc/src | |
parent | e41176bd6f47f580fdc4d2c18eab727021e62562 (diff) |
doc: Fix mistake in PL/Python documentation
Small thinko introduced by 94aceed317730953476bec490ce0148b2af3c383
Reported-by: nassehk@gmail.com
Diffstat (limited to 'doc/src')
-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 111ef27de4c..ae9f059ba13 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> |