diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2017-12-12 03:59:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-12 03:59:08 (GMT) |
commit | e570211406f9bfbe16eff8d10e614d90497e08df (patch) | |
tree | 125352d976b2f4fc56ef8fec673153c32a297142 /Lib/idlelib/idle_test | |
parent | e56975351bc2c574c728f738e88effba7116279f (diff) | |
download | cpython-e570211406f9bfbe16eff8d10e614d90497e08df.zip cpython-e570211406f9bfbe16eff8d10e614d90497e08df.tar.gz cpython-e570211406f9bfbe16eff8d10e614d90497e08df.tar.bz2 |
Fix idlelib comment typos reported by Mike on pull request 4803. (#4807)
Diffstat (limited to 'Lib/idlelib/idle_test')
-rw-r--r-- | Lib/idlelib/idle_test/test_query.py | 2 | ||||
-rw-r--r-- | Lib/idlelib/idle_test/test_search.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/idle_test/test_query.py b/Lib/idlelib/idle_test/test_query.py index 1210afe..953f24f 100644 --- a/Lib/idlelib/idle_test/test_query.py +++ b/Lib/idlelib/idle_test/test_query.py @@ -162,7 +162,7 @@ class HelpsourceBrowsefileTest(unittest.TestCase): # Path is widget entry, either '' or something. # Func return is file dialog return, either '' or something. # Func return should override widget entry. - # We need all 4 combination to test all (most) code paths. + # We need all 4 combinations to test all (most) code paths. for path, func, result in ( ('', lambda a,b,c:'', ''), ('', lambda a,b,c: __file__, __file__), diff --git a/Lib/idlelib/idle_test/test_search.py b/Lib/idlelib/idle_test/test_search.py index 80fa93a..3ab7295 100644 --- a/Lib/idlelib/idle_test/test_search.py +++ b/Lib/idlelib/idle_test/test_search.py @@ -1,7 +1,7 @@ """Test SearchDialog class in idlelib.search.py""" # Does not currently test the event handler wrappers. -# A usage test should simulate clicks and check hilighting. +# A usage test should simulate clicks and check highlighting. # Tests need to be coordinated with SearchDialogBase tests # to avoid duplication. |