Minor error in calling a python list a tuple - Mailing list pgsql-docs

From PG Doc comments form
Subject Minor error in calling a python list a tuple
Date
Msg-id 164374545896.17999.4391568104637257825@wrigleys.postgresql.org
Whole thread Raw
Responses Re: Minor error in calling a python list a tuple  (Peter Eisentraut <peter.eisentraut@enterprisedb.com>)
List pgsql-docs
The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/13/plpython-data.html
Description:

Hello,
In the link bellow there is the mentioned error.
https://www.postgresql.org/docs/13/plpython-data.html#PLPYTHON-ARRAYS

CREATE FUNCTION make_pair (name text, value integer)
  RETURNS named_value
AS $$
  return ( name, value )
  # or alternatively, as tuple: return [ name, value ]
$$ LANGUAGE plpythonu;


Should be:
  # or alternatively, as list: return [ name, value ]

I hope I am not wrong and I didn't waste your time.
Thanks,

Nasseh

pgsql-docs by date:

Previous
From: Fujii Masao
Date:
Subject: maximum number of backtrace frames logged by backtrace_functions
Next
From: Peter Eisentraut
Date:
Subject: Re: maximum number of backtrace frames logged by backtrace_functions