summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgeorgeps <georgeps>2008-01-09 08:09:55 (GMT)
committergeorgeps <georgeps>2008-01-09 08:09:55 (GMT)
commit6adf6fbdbe0e957b34ece292a0c4dfa88a7c4c92 (patch)
treef899be48626f30d6ad8b8668d61c78d116b3f1b2
parent9d71fec4478107420e9e1d27660879c735640be2 (diff)
downloadtcl-6adf6fbdbe0e957b34ece292a0c4dfa88a7c4c92.zip
tcl-6adf6fbdbe0e957b34ece292a0c4dfa88a7c4c92.tar.gz
tcl-6adf6fbdbe0e957b34ece292a0c4dfa88a7c4c92.tar.bz2
Add a missing be to fix a typo.
-rw-r--r--ChangeLog4
-rw-r--r--doc/vwait.n4
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 6449c96..61eb727 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2008-01-09 George Peter Staplin <georgeps@xmission.com>
+
+ * doc/vwait.n: add a missing be to fix a typo.
+
2008-01-04 Jeff Hobbs <jeffh@ActiveState.com>
* tools/tcltk-man2html.tcl (make-man-pages): make man page title
diff --git a/doc/vwait.n b/doc/vwait.n
index 568f23a..1982c9a 100644
--- a/doc/vwait.n
+++ b/doc/vwait.n
@@ -4,7 +4,7 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: vwait.n,v 1.6 2004/10/27 14:43:54 dkf Exp $
+'\" RCS: @(#) $Id: vwait.n,v 1.7 2008/01/09 08:09:56 georgeps Exp $
'\"
.so man.macros
.TH vwait n 8.0 Tcl "Tcl Built-In Commands"
@@ -23,7 +23,7 @@ the application if no events are ready. It continues processing
events until some event handler sets the value of variable
\fIvarName\fR. Once \fIvarName\fR has been set, the \fBvwait\fR
command will return as soon as the event handler that modified
-\fIvarName\fR completes. \fIvarName\fR must globally scoped
+\fIvarName\fR completes. \fIvarName\fR must be globally scoped
(either with a call to \fBglobal\fR for the \fIvarName\fR, or with
the full namespace path specification).
.PP