diff options
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/func.sgml | 4 |
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 <> 0 THEN y/x > 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> |