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;
SELECT COALESCE(description, short_description, '(none)') ...
- This returns description> if it is not null, or
- short_description> if it is not null, or (none)>.
+ This returns description> if it is not null, otherwise
+ short_description> if it is not null, otherwise (none)>.