diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2015-04-14 06:30:01 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2015-04-14 06:30:01 (GMT) |
commit | 4882cacab6bcaf90ac496fc8878987598e7665c1 (patch) | |
tree | 6dab1cbde4725b432bb3fd06e329d003c6a83376 /Lib/idlelib | |
parent | 52a3b74900db90dfbc5d6ce5145bce02d172b1b1 (diff) | |
download | cpython-4882cacab6bcaf90ac496fc8878987598e7665c1.zip cpython-4882cacab6bcaf90ac496fc8878987598e7665c1.tar.gz cpython-4882cacab6bcaf90ac496fc8878987598e7665c1.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. """ |