SF# 1635892:  Fix docs for betavariate's input parameters .
diff --git a/Lib/random.py b/Lib/random.py
index b80f1a1..ed87ddd 100644
--- a/Lib/random.py
+++ b/Lib/random.py
@@ -569,7 +569,7 @@
     def betavariate(self, alpha, beta):
         """Beta distribution.
 
-        Conditions on the parameters are alpha > -1 and beta} > -1.
+        Conditions on the parameters are alpha > 0 and beta > 0.
         Returned values range between 0 and 1.
 
         """