bpo-36766: Typos in docs and code comments (GH-13116)

This commit is contained in:
penguindustin 2019-05-06 14:57:17 -04:00 committed by Stéphane Wirtel
parent 3921b1cc34
commit 9646630895
22 changed files with 22 additions and 22 deletions

View file

@ -719,7 +719,7 @@ class MersenneTwister_TestBasicOps(TestBasicOps, unittest.TestCase):
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]