summaryrefslogtreecommitdiff
path: root/Lib/test/test_collections.py
diff options
context:
space:
mode:
authorMin ho Kim <minho42@gmail.com>2019-08-31 06:21:19 +1000
committerTerry Jan Reedy <tjreedy@udel.edu>2019-08-30 16:21:19 -0400
commit39d87b54715197ca9dcb6902bb43461c0ed701a2 (patch)
tree778362acb785069882291e2e39f64fd395d73889 /Lib/test/test_collections.py
parent15119bc2a7e902ae1c6988556c3bef3de87fa789 (diff)
downloadcpython-git-39d87b54715197ca9dcb6902bb43461c0ed701a2.tar.gz
Fix typos mostly in comments, docs and test names (GH-15209)
Diffstat (limited to 'Lib/test/test_collections.py')
-rw-r--r--Lib/test/test_collections.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_collections.py b/Lib/test/test_collections.py
index 7f01de6f43..a2a66a7572 100644
--- a/Lib/test/test_collections.py
+++ b/Lib/test/test_collections.py
@@ -1927,7 +1927,7 @@ class TestCounter(unittest.TestCase):
'r', 'c', 'd', ' ', 's', 's', 'i', 'i', 'm', 'm', 'l'])
# Math operations order first by the order encountered in the left
- # operand and then by the order encounted in the right operand.
+ # operand and then by the order encountered in the right operand.
ps = 'aaabbcdddeefggghhijjjkkl'
qs = 'abbcccdeefffhkkllllmmnno'
order = {letter: i for i, letter in enumerate(dict.fromkeys(ps + qs))}