aboutsummaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2011-10-04 22:39:29 -0400
committerBruce Momjian <bruce@momjian.us>2011-10-04 22:39:29 -0400
commit3919ad864d7040361fd4b44719acaa1ec0f87bbd (patch)
tree9831fa905a2a5ea9a6f7c705d749b285db5e9ab2 /doc/src
parent9d23d7cdafb3540aa2de9310c7f1afee87dfc2f2 (diff)
downloadpostgresql-3919ad864d7040361fd4b44719acaa1ec0f87bbd.tar.gz
postgresql-3919ad864d7040361fd4b44719acaa1ec0f87bbd.zip
Change wording for COALESCE docs to use "otherwise".
Per Tom
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/func.sgml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml
index 2f307c2b121..bedd8ba7f55 100644
--- a/doc/src/sgml/func.sgml
+++ b/doc/src/sgml/func.sgml
@@ -10015,8 +10015,8 @@ SELECT ... WHERE CASE WHEN x &lt;&gt; 0 THEN y/x &gt; 1.5 ELSE false END;
<programlisting>
SELECT COALESCE(description, short_description, '(none)') ...
</programlisting>
- This returns <varname>description</> if it is not null, or
- <varname>short_description</> if it is not null, or <literal>(none)</>.
+ This returns <varname>description</> if it is not null, otherwise
+ <varname>short_description</> if it is not null, otherwise <literal>(none)</>.
</para>
<para>