diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2012-12-03 11:08:54 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2012-12-03 11:08:54 -0500 |
commit | 6a8b9987c63bc88b3a4fd56a644d250e7113dd7f (patch) | |
tree | d2afe423822d8fdbb316377d2160c023649c34c1 | |
parent | 562fca74a164f5edd2922edbc4f655e15ddfcc18 (diff) | |
download | postgresql-6a8b9987c63bc88b3a4fd56a644d250e7113dd7f.tar.gz postgresql-6a8b9987c63bc88b3a4fd56a644d250e7113dd7f.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 6447353a3c5..1ede34d71ca 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -7870,7 +7870,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> |