summaryrefslogtreecommitdiffstats
path: root/Lib/lib-tk/ttk.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/lib-tk/ttk.py')
-rw-r--r--Lib/lib-tk/ttk.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/lib-tk/ttk.py b/Lib/lib-tk/ttk.py
index 08cb040..fe73aef 100644
--- a/Lib/lib-tk/ttk.py
+++ b/Lib/lib-tk/ttk.py
@@ -291,7 +291,7 @@ def _val_or_dict(tk, options, *args):
"""Format options then call Tk command with args and options and return
the appropriate result.
- If no option is specified, a dict is returned. If a option is
+ If no option is specified, a dict is returned. If an option is
specified with the None value, the value for that option is returned.
Otherwise, the function just sets the passed options and the caller
shouldn't be expecting a return value anyway."""
@@ -1476,7 +1476,7 @@ class LabeledScale(Frame, object):
can be accessed through instance.label"""
def __init__(self, master=None, variable=None, from_=0, to=10, **kw):
- """Construct an horizontal LabeledScale with parent master, a
+ """Construct a horizontal LabeledScale with parent master, a
variable to be associated with the Ttk Scale widget and its range.
If variable is not specified, a Tkinter.IntVar is created.