#15831: document multiple signatures on different lines. Patch by Chris Jerdonek.
diff --git a/Doc/library/random.rst b/Doc/library/random.rst
index 29f0e6a..b1df231 100644
--- a/Doc/library/random.rst
+++ b/Doc/library/random.rst
@@ -124,7 +124,8 @@
Functions for integers:
-.. function:: randrange([start,] stop[, step])
+.. function:: randrange(stop)
+ randrange(start, stop[, step])
Return a randomly selected element from ``range(start, stop, step)``. This is
equivalent to ``choice(range(start, stop, step))``, but doesn't actually build a