summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2015-08-18 12:50:08 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2015-08-18 12:50:08 (GMT)
commita87ec8fe08601b86f7d0c60e4b39d5971e4ae49f (patch)
tree96497e02016066f74afb114eeb0e48f266977f3a
parentef7dba72f31611408a3994373a4257554c4a0d05 (diff)
downloadtcl-a87ec8fe08601b86f7d0c60e4b39d5971e4ae49f.zip
tcl-a87ec8fe08601b86f7d0c60e4b39d5971e4ae49f.tar.gz
tcl-a87ec8fe08601b86f7d0c60e4b39d5971e4ae49f.tar.bz2
[2c509f6291] Minor documentation correction from Peter Lewerin.
-rw-r--r--doc/my.n2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/my.n b/doc/my.n
index b91bc9a0..2a9769b 100644
--- a/doc/my.n
+++ b/doc/my.n
@@ -37,7 +37,7 @@ the \fBoo::object\fR class, which is not publicly visible by default:
oo::class create c {
method count {} {
\fBmy\fR variable counter
- print [incr counter]
+ puts [incr counter]
}
}
c create o