summaryrefslogtreecommitdiffstats
path: root/Demo/tkinter/matt/menu-simple.py
diff options
context:
space:
mode:
Diffstat (limited to 'Demo/tkinter/matt/menu-simple.py')
-rw-r--r--Demo/tkinter/matt/menu-simple.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Demo/tkinter/matt/menu-simple.py b/Demo/tkinter/matt/menu-simple.py
index a927c50..5d3303f 100644
--- a/Demo/tkinter/matt/menu-simple.py
+++ b/Demo/tkinter/matt/menu-simple.py
@@ -48,7 +48,7 @@ def makeFileMenu():
File_button.menu = Menu(File_button)
# add an item. The first param is a menu entry type,
- # must be one of: "cascade", "checkbutton", "command", "radiobutton", "seperator"
+ # must be one of: "cascade", "checkbutton", "command", "radiobutton", "separator"
# see menu-demo-2.py for examples of use
File_button.menu.add_command(label='New...', underline=0,
command=new_file)