From: Bruce Momjian <bruce@momjian.us>
Date: Wed, 5 Oct 2011 02:39:29 +0000 (-0400)
Subject: Change wording for COALESCE docs to use "otherwise".
X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=3919ad864d7040361fd4b44719acaa1ec0f87bbd;p=users%2Fkgrittn%2Fpostgres.git

Change wording for COALESCE docs to use "otherwise".

Per Tom
---

diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml
index 2f307c2b12..bedd8ba7f5 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>