[3.7] bpo-36766: Typos in docs and code comments (GH-13116). (GH-13136)



(cherry picked from commit 964663089547ca110199e23867b46b07ff4be88c)

Co-authored-by: penguindustin <penguindustin@gmail.com>





https://bugs.python.org/issue36766
diff --git a/Lib/test/test_random.py b/Lib/test/test_random.py
index cbf3e41..f0822cd 100644
--- a/Lib/test/test_random.py
+++ b/Lib/test/test_random.py
@@ -707,7 +707,7 @@
         c = self.gen.choices(range(n), cum_weights=range(1, n+1), k=10000)
         self.assertEqual(a, c)
 
-        # Amerian Roulette
+        # American Roulette
         population = ['Red', 'Black', 'Green']
         weights = [18, 18, 2]
         cum_weights = [18, 36, 38]