diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2009-06-07 23:33:22 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2009-06-07 23:33:22 (GMT) |
commit | 1c1ca73a68dc896e783d8ca54d1cae51d93380cd (patch) | |
tree | 8daa0d86fcb863587d3f4758cbe6902b4e0165d0 | |
parent | 3cd93e3d444a4e12d4172b09ad1ec752afc02ead (diff) | |
download | tcl-1c1ca73a68dc896e783d8ca54d1cae51d93380cd.zip tcl-1c1ca73a68dc896e783d8ca54d1cae51d93380cd.tar.gz tcl-1c1ca73a68dc896e783d8ca54d1cae51d93380cd.tar.bz2 |
Fix docbug.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | doc/copy.n | 6 |
2 files changed, 7 insertions, 3 deletions
@@ -1,3 +1,7 @@ +2009-06-08 Donal K. Fellows <dkf@users.sf.net> + + * doc/copy.n: Fix error in example spotted by Venkat Iyer. + 2009-06-02 Don Porter <dgp@users.sourceforge.net> * generic/tclExecute.c: Replace dynamically-initialized table with @@ -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: copy.n,v 1.2 2008/10/17 10:22:25 dkf Exp $ +'\" RCS: @(#) $Id: copy.n,v 1.3 2009/06/07 23:33:23 dkf Exp $ '\" .so man.macros .TH copy n 0.1 TclOO "TclOO Commands" @@ -39,9 +39,9 @@ then demonstrates that the copied object is indeed a copy. .PP .CS oo::object create src -oo::define src method msg {} {puts foo} +oo::objdefine src method msg {} {puts foo} \fBoo::copy\fR src dst -oo::define src method msg {} {puts bar} +oo::objdefine src method msg {} {puts bar} src msg \fI\(-> prints "bar"\fR dst msg \fI\(-> prints "foo"\fR .CE |