diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2015-04-14 06:35:51 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2015-04-14 06:35:51 (GMT) |
commit | dfa4e045a363fd1dd31c1d57002fc78c10de85a2 (patch) | |
tree | 3f044e4d37129fb3dd70d1535cad09c2f78d9563 /Lib/idlelib | |
parent | a468db9b0bd8d17575923b91db5fbc4a222d4252 (diff) | |
parent | 4882cacab6bcaf90ac496fc8878987598e7665c1 (diff) | |
download | cpython-dfa4e045a363fd1dd31c1d57002fc78c10de85a2.zip cpython-dfa4e045a363fd1dd31c1d57002fc78c10de85a2.tar.gz cpython-dfa4e045a363fd1dd31c1d57002fc78c10de85a2.tar.bz2 |
Issue #23943: Fix typos. Patch by Piotr Kasprzyk.
Diffstat (limited to 'Lib/idlelib')
-rw-r--r-- | Lib/idlelib/SearchEngine.py | 2 | ||||
-rw-r--r-- | Lib/idlelib/idle_test/mock_tk.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/SearchEngine.py b/Lib/idlelib/SearchEngine.py index 1e0534c..37883bf 100644 --- a/Lib/idlelib/SearchEngine.py +++ b/Lib/idlelib/SearchEngine.py @@ -107,7 +107,7 @@ class SearchEngine: It directly return the result of that call. Text is a text widget. Prog is a precompiled pattern. - The ok parameteris a bit complicated as it has two effects. + The ok parameter is a bit complicated as it has two effects. If there is a selection, the search begin at either end, depending on the direction setting and ok, with ok meaning that diff --git a/Lib/idlelib/idle_test/mock_tk.py b/Lib/idlelib/idle_test/mock_tk.py index a8030f4..86fe848 100644 --- a/Lib/idlelib/idle_test/mock_tk.py +++ b/Lib/idlelib/idle_test/mock_tk.py @@ -1,6 +1,6 @@ """Classes that replace tkinter gui objects used by an object being tested. -A gui object is anything with a master or parent paramenter, which is +A gui object is anything with a master or parent parameter, which is typically required in spite of what the doc strings say. """ |