diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2018-03-25 12:38:21 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2018-03-25 12:38:21 -0400 |
commit | ee4a2c4a0345f2589ce32b64493b1b14e87f0465 (patch) | |
tree | dbaa4f1828551af09b2f06424723736b6f8cf0af | |
parent | cc547cf08fe62e90f34a780a6b4fe428336ab3ec (diff) | |
download | postgresql-ee4a2c4a0345f2589ce32b64493b1b14e87f0465.tar.gz postgresql-ee4a2c4a0345f2589ce32b64493b1b14e87f0465.zip |
Doc: remove extra comma in syntax summary for array_fill().
Noted by Scott Ure. Back-patch to all supported branches.
Discussion: https://postgr.es/m/152199346794.4544.1888397173908716912@wrigleys.postgresql.org
-rw-r--r-- | doc/src/sgml/func.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 2f59af25a6f..7b1a85fc717 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -12761,7 +12761,7 @@ SELECT NULLIF(value, '(none)') ... <row> <entry> <literal> - <function>array_fill</function>(<type>anyelement</type>, <type>int[]</type>, + <function>array_fill</function>(<type>anyelement</type>, <type>int[]</type> <optional>, <type>int[]</type></optional>) </literal> </entry> |