aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2023-11-14 10:41:17 +0100
committerPeter Eisentraut <peter@eisentraut.org>2023-11-14 10:41:17 +0100
commit43071777be134bb471f316fea66d928e6c40e37f (patch)
tree0c47902a20f324d272f161592b0bd7f6c2185048
parent3849fe7c2ba7758eee5f1f524147a3620b677fb3 (diff)
downloadpostgresql-43071777be134bb471f316fea66d928e6c40e37f.tar.gz
postgresql-43071777be134bb471f316fea66d928e6c40e37f.zip
Fix whitespace
-rw-r--r--doc/src/sgml/func.sgml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml
index 202e64d0e07..d76df6239fe 100644
--- a/doc/src/sgml/func.sgml
+++ b/doc/src/sgml/func.sgml
@@ -718,7 +718,7 @@ repeat('Pg', 4) <returnvalue>PgPgPgPg</returnvalue>
<literal>IS NULL</literal> and <literal>IS NOT NULL</literal> do not always return
inverse results for row-valued expressions; in particular, a row-valued
expression that contains both null and non-null fields will return false
- for both tests. For example:
+ for both tests. For example:
<programlisting>
SELECT ROW(1,2.5,'this is a test') = ROW(1, 3, 'not the same');