getrandombits is actually getrandbits
diff --git a/Lib/random.py b/Lib/random.py
index bd8679f..5879340 100644
--- a/Lib/random.py
+++ b/Lib/random.py
@@ -79,9 +79,9 @@
 
     Class Random can also be subclassed if you want to use a different basic
     generator of your own devising: in that case, override the following
-    methods:  random(), seed(), getstate(), setstate() and jumpahead().
-    Optionally, implement a getrandombits() method so that randrange()
-    can cover arbitrarily large ranges.
+    methods: random(), seed(), getstate(), setstate() and jumpahead().
+    Optionally, implement a getrandbits() method so that randrange() can cover
+    arbitrarily large ranges.
 
     """