diff options
author | Robert Haas <rhaas@postgresql.org> | 2010-05-16 03:55:55 +0000 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2010-05-16 03:55:55 +0000 |
commit | edf3df60e660f52e486366fc63af2f720d37ff06 (patch) | |
tree | 1fdcb53e9cc4af7d22f617ad62c4a6f26efd0e4d | |
parent | 8be5f6ecaa603f23e9c8f0d79af791282b60a1be (diff) | |
download | postgresql-edf3df60e660f52e486366fc63af2f720d37ff06.tar.gz postgresql-edf3df60e660f52e486366fc63af2f720d37ff06.zip |
Fix longstanding typo in V1 calling conventions documentation.
Erik Rijkers
-rw-r--r-- | doc/src/sgml/xfunc.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/xfunc.sgml b/doc/src/sgml/xfunc.sgml index e05a87fc887..d187c85f71a 100644 --- a/doc/src/sgml/xfunc.sgml +++ b/doc/src/sgml/xfunc.sgml @@ -1,5 +1,5 @@ <!-- -$PostgreSQL: pgsql/doc/src/sgml/xfunc.sgml,v 1.96.4.3 2005/02/21 06:12:41 neilc Exp $ +$PostgreSQL: pgsql/doc/src/sgml/xfunc.sgml,v 1.96.4.4 2010/05/16 03:55:55 rhaas Exp $ --> <sect1 id="xfunc"> @@ -1600,7 +1600,7 @@ Datum funcname(PG_FUNCTION_ARGS) <programlisting> PG_FUNCTION_INFO_V1(funcname); </programlisting> - must appear in the same source file. (Conventionally. it's + must appear in the same source file. (Conventionally, it's written just before the function itself.) This macro call is not needed for <literal>internal</>-language functions, since <productname>PostgreSQL</> assumes that all internal functions |