diff options
author | penguindustin <penguindustin@gmail.com> | 2019-05-06 18:57:17 (GMT) |
---|---|---|
committer | Stéphane Wirtel <stephane@wirtel.be> | 2019-05-06 18:57:17 (GMT) |
commit | 964663089547ca110199e23867b46b07ff4be88c (patch) | |
tree | 7936a6abc5e5c20058b4f51dbd8379eb4658e42d /Lib/test/test_random.py | |
parent | 3921b1cc34c2fc8b8b480c19a95ec306de710fdd (diff) | |
download | cpython-964663089547ca110199e23867b46b07ff4be88c.zip cpython-964663089547ca110199e23867b46b07ff4be88c.tar.gz cpython-964663089547ca110199e23867b46b07ff4be88c.tar.bz2 |
bpo-36766: Typos in docs and code comments (GH-13116)
Diffstat (limited to 'Lib/test/test_random.py')
-rw-r--r-- | Lib/test/test_random.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_random.py b/Lib/test/test_random.py index e818a7b..ff1ddca 100644 --- a/Lib/test/test_random.py +++ b/Lib/test/test_random.py @@ -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] |