diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml
index 36c3e53e42..21f8ab73e2 100644
--- a/doc/src/sgml/func.sgml
+++ b/doc/src/sgml/func.sgml
@@ -1841,6 +1841,9 @@ repeat('Pg', 4) PgPgPgPg
subsequent random() calls in the current session
can be repeated by re-issuing setseed() with the same
argument.
+ Without any prior setseed() call in the same
+ session, the first random() call obtains a seed
+ from a platform-dependent source of random bits.
diff --git a/doc/src/sgml/ref/set.sgml b/doc/src/sgml/ref/set.sgml
index ae508d026e..5878c61f9b 100644
--- a/doc/src/sgml/ref/set.sgml
+++ b/doc/src/sgml/ref/set.sgml
@@ -177,8 +177,7 @@ SET [ SESSION | LOCAL ] TIME ZONE { timezone
Sets the internal seed for the random number generator (the
function random). Allowed values are
- floating-point numbers between -1 and 1, which are then
- multiplied by 231-1.
+ floating-point numbers between -1 and 1 inclusive.