Trivial change in prompt label suggested by Case Roole.

This commit is contained in:
Guido van Rossum 1997-11-24 17:49:13 +00:00
parent 2d9feeddf3
commit 37885c27c0
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ class RegexDemo:
self.master = master
self.topframe = Frame(self.master)
self.topframe.pack(fill=X)
self.promptdisplay = Label(self.topframe, text="Enter a string:")
self.promptdisplay = Label(self.topframe, text="Enter a regex:")
self.promptdisplay.pack(side=LEFT)
self.statusdisplay = Label(self.topframe, text="", anchor=W)
self.statusdisplay.pack(side=LEFT, fill=X)