diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-02-04 01:41:43 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2018-02-04 01:41:43 (GMT) |
commit | e86db34dd3b43dc9c9beb21a82cd2c3b7c4c05df (patch) | |
tree | 93595a8942b755afd2b49bc574fb7dce9a072ea1 /Lib/idlelib/configdialog.py | |
parent | 52f745852e49498d7dd86fd309ae57f6a7af568f (diff) | |
download | cpython-e86db34dd3b43dc9c9beb21a82cd2c3b7c4c05df.zip cpython-e86db34dd3b43dc9c9beb21a82cd2c3b7c4c05df.tar.gz cpython-e86db34dd3b43dc9c9beb21a82cd2c3b7c4c05df.tar.bz2 |
[3.7] bpo-32746: Fix multiple typos (GH-5144) (GH-5520)
Fix typos found by codespell in docs, docstrings, and comments.
(cherry picked from commit c3d9508ff22ece9a96892b628dd5813e2fb0cd80)
Co-authored-by: Leo Arias <leo.arias@canonical.com>
Diffstat (limited to 'Lib/idlelib/configdialog.py')
-rw-r--r-- | Lib/idlelib/configdialog.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/configdialog.py b/Lib/idlelib/configdialog.py index 4e8394b..231e14e 100644 --- a/Lib/idlelib/configdialog.py +++ b/Lib/idlelib/configdialog.py @@ -495,7 +495,7 @@ class FontPage(Frame): Changing any of the font vars invokes var_changed_font, which adds all 3 font options to changes and calls set_samples. Set_samples applies a new font constructed from the font vars to - font_sample and to highlight_sample on the hightlight page. + font_sample and to highlight_sample on the highlight page. Tabs: Enable users to change spaces entered for indent tabs. Changing indent_scale value with the mouse sets Var space_num, @@ -646,7 +646,7 @@ class FontPage(Frame): Called on font initialization and change events. Accesses font_name, font_size, and font_bold Variables. - Updates font_sample and hightlight page highlight_sample. + Updates font_sample and highlight page highlight_sample. """ font_name = self.font_name.get() font_weight = tkFont.BOLD if self.font_bold.get() else tkFont.NORMAL |