summaryrefslogtreecommitdiff
path: root/Demo
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-05-26 05:28:50 +0000
committerMartin Panter <vadmium+py@gmail.com>2016-05-26 05:28:50 +0000
commitb1d867f14965e2369d31a3fcdab5bca34b4d81b4 (patch)
treee12a80fb726447f7e1c09839aae24fd9277258ce /Demo
parent5db0b3396e664affee09c0cb2094fdafc94acd94 (diff)
downloadcpython-git-b1d867f14965e2369d31a3fcdab5bca34b4d81b4.tar.gz
Issue #27076: Doc, comment and test function name spelling fixes
Most fixes to Doc/ and Lib/ directories by Ville Skyttä.
Diffstat (limited to 'Demo')
-rw-r--r--Demo/tkinter/matt/canvas-with-scrollbars.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Demo/tkinter/matt/canvas-with-scrollbars.py b/Demo/tkinter/matt/canvas-with-scrollbars.py
index 81ef25a88a..8f81cadced 100644
--- a/Demo/tkinter/matt/canvas-with-scrollbars.py
+++ b/Demo/tkinter/matt/canvas-with-scrollbars.py
@@ -1,7 +1,7 @@
from Tkinter import *
-# This example program creates a scroling canvas, and demonstrates
-# how to tie scrollbars and canvses together. The mechanism
+# This example program creates a scrolling canvas, and demonstrates
+# how to tie scrollbars and canvases together. The mechanism
# is analogus for listboxes and other widgets with
# "xscroll" and "yscroll" configuration options.