summaryrefslogtreecommitdiffstats
path: root/doc/winfo.n
diff options
context:
space:
mode:
authordkf <dkf@noemail.net>2004-10-28 12:25:52 (GMT)
committerdkf <dkf@noemail.net>2004-10-28 12:25:52 (GMT)
commit6e6a88d3a7c70b863465bc74ff35bd30ca471af8 (patch)
treed43ab195bbb59360312c2df24cc52e874efc6409 /doc/winfo.n
parent51cec1f04a649b473ed1ede44d3c4aac55a1b330 (diff)
downloadtk-6e6a88d3a7c70b863465bc74ff35bd30ca471af8.zip
tk-6e6a88d3a7c70b863465bc74ff35bd30ca471af8.tar.gz
tk-6e6a88d3a7c70b863465bc74ff35bd30ca471af8.tar.bz2
More minor doc fixes
FossilOrigin-Name: da9814e92b42d4f7e683a8e278d413344e5d6413
Diffstat (limited to 'doc/winfo.n')
-rw-r--r--doc/winfo.n6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/winfo.n b/doc/winfo.n
index ce79778..76f29c3 100644
--- a/doc/winfo.n
+++ b/doc/winfo.n
@@ -5,7 +5,7 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: winfo.n,v 1.6 2004/06/30 22:17:59 dkf Exp $
+'\" RCS: @(#) $Id: winfo.n,v 1.7 2004/10/28 12:25:53 dkf Exp $
'\"
.so man.macros
.TH winfo n 4.3 Tk "Tk Built-In Commands"
@@ -332,9 +332,9 @@ has no border).
.SH EXAMPLE
Print where the mouse pointer is and what window it is currently over:
.CS
-lassign [\fBwinfo\fR pointerxy .] x y
+lassign [\fBwinfo pointerxy\fR .] x y
puts -nonewline "Mouse pointer at ($x,$y) which is "
-set win [\fBwinfo\fR containing $x $y]
+set win [\fBwinfo containing\fR $x $y]
if {$win eq ""} {
puts "over no window"
} else {