diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2012-12-03 11:08:59 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2012-12-03 11:08:59 -0500 |
commit | e0aad34a6b1afa4fc165849d2743f769e550f022 (patch) | |
tree | 981bc79c14f3a92a66f10c5615dcb3271d678f02 | |
parent | 04a210b090ee9ff3ff4c148c07dff62eb4c30f92 (diff) | |
download | postgresql-e0aad34a6b1afa4fc165849d2743f769e550f022.tar.gz postgresql-e0aad34a6b1afa4fc165849d2743f769e550f022.zip |
Fix documentation of path(polygon) function.
Obviously, this returns type "path", but somebody made a copy-and-pasteo
long ago.
Dagfinn Ilmari Mannsåker
-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 fcad177b7d2..264fe110c06 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -7854,7 +7854,7 @@ CREATE TYPE rainbow AS ENUM ('red', 'orange', 'yellow', 'green', 'blue', 'purple </indexterm> <literal><function>path(<type>polygon</type>)</function></literal> </entry> - <entry><type>point</type></entry> + <entry><type>path</type></entry> <entry>polygon to path</entry> <entry><literal>path(polygon '((0,0),(1,1),(2,0))')</literal></entry> </row> |