diff options
author | Robert Haas <rhaas@postgresql.org> | 2010-05-16 03:55:41 +0000 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2010-05-16 03:55:41 +0000 |
commit | 4384a95a57dade91c4a169b711001c3acdcc219c (patch) | |
tree | a905e474f0477e4ced1a5095a1c1d802664cb71e | |
parent | bd823e11fa52a79f6116e1538f861cccd8823f3f (diff) | |
download | postgresql-4384a95a57dade91c4a169b711001c3acdcc219c.tar.gz postgresql-4384a95a57dade91c4a169b711001c3acdcc219c.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 1b771c5ecbf..effd2be4795 100644 --- a/doc/src/sgml/xfunc.sgml +++ b/doc/src/sgml/xfunc.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/xfunc.sgml,v 1.146 2010/04/28 16:54:15 tgl Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/xfunc.sgml,v 1.147 2010/05/16 03:55:41 rhaas Exp $ --> <sect1 id="xfunc"> <title>User-Defined Functions</title> @@ -2075,7 +2075,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 |