diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml
index d201163407..5bba13973f 100644
--- a/doc/src/sgml/func.sgml
+++ b/doc/src/sgml/func.sgml
@@ -1568,7 +1568,10 @@ repeat('Pg', 4) PgPgPgPg
double precision
- Rounds to nearest integer
+ Rounds to nearest integer. For numeric, ties are
+ broken by rounding away from zero. For double precision,
+ the tie-breaking behavior is platform dependent, but
+ round to nearest even
is the most common rule.
round(42.4)
@@ -1583,7 +1586,7 @@ repeat('Pg', 4) PgPgPgPg
Rounds v to s decimal
- places
+ places. Ties are broken by rounding away from zero.
round(42.4382, 2)