]> granicus.if.org Git - postgresql/commitdiff
Change wording for COALESCE docs to use "otherwise".
authorBruce Momjian <bruce@momjian.us>
Wed, 5 Oct 2011 02:39:29 +0000 (22:39 -0400)
committerBruce Momjian <bruce@momjian.us>
Wed, 5 Oct 2011 02:39:29 +0000 (22:39 -0400)
Per Tom

doc/src/sgml/func.sgml

index 2f307c2b121f6460cd7b275b84bf972711b641eb..bedd8ba7f557ab8eeb7e6127d61b6bd3e0acc79a 100644 (file)
@@ -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>