diff options
author | Robert Haas <rhaas@postgresql.org> | 2010-05-16 03:56:28 +0000 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2010-05-16 03:56:28 +0000 |
commit | dfeaceb2df584beffd9cb65b247886eaf1f8d820 (patch) | |
tree | f1dee772e09bb350bcb84347ed32eb36de1d8edd /doc/src | |
parent | 439bdd151f78ff08fa16ac95d611a521b918d9d9 (diff) |
Fix longstanding typo in V1 calling conventions documentation.
Erik Rijkers
Diffstat (limited to 'doc/src')
-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 e1a9df50ec8..fb916d7bd2a 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.138.2.1 2009/09/03 22:11:13 tgl Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/xfunc.sgml,v 1.138.2.2 2010/05/16 03:56:28 rhaas Exp $ --> <sect1 id="xfunc"> <title>User-Defined Functions</title> @@ -2013,7 +2013,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 |