summaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2010-02-14 01:01:40 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2010-02-14 01:01:40 +0000
commitd1e0eb30c0d1ed67c22844479c57ea6d9fd5c4d9 (patch)
treeafcfbbf0e58d2faf9b7761160db711ea15bee7e7 /doc/src
parent9908950f1131283d27ac2d195d2607b7f5b36d61 (diff)
Ooops, let's get the non-null vs null bit right ...
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/ref/create_function.sgml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/create_function.sgml b/doc/src/sgml/ref/create_function.sgml
index a836d808c11..e0f89ec2c89 100644
--- a/doc/src/sgml/ref/create_function.sgml
+++ b/doc/src/sgml/ref/create_function.sgml
@@ -1,5 +1,5 @@
<!--
-$PostgreSQL: pgsql/doc/src/sgml/ref/create_function.sgml,v 1.84.2.3 2010/02/14 00:48:20 tgl Exp $
+$PostgreSQL: pgsql/doc/src/sgml/ref/create_function.sgml,v 1.84.2.4 2010/02/14 01:01:40 tgl Exp $
-->
<refentry id="SQL-CREATEFUNCTION">
@@ -574,7 +574,7 @@ CREATE FUNCTION foo(int, int default 42) ...
If a function is declared <literal>STRICT</> with a <literal>VARIADIC</>
argument, the strictness check tests that the variadic array <emphasis>as
a whole</> is non-null. The function will still be called if the
- array has non-null elements.
+ array has null elements.
</para>
</refsect1>