diff options
author | hobbs <hobbs> | 1999-08-09 16:30:34 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 1999-08-09 16:30:34 (GMT) |
commit | c6cad9a80c362fb16803329eb1f55bf319d0c628 (patch) | |
tree | 2c876a8bde9c5a01f096833763979b73f6256321 /doc/Object.3 | |
parent | 4ff6daaaf9efbd9a03407ec0362aee849b29cb7d (diff) | |
download | tcl-c6cad9a80c362fb16803329eb1f55bf319d0c628.zip tcl-c6cad9a80c362fb16803329eb1f55bf319d0c628.tar.gz tcl-c6cad9a80c362fb16803329eb1f55bf319d0c628.tar.bz2 |
1999-08-09 Jeff Hobbs <hobbs@scriptics.com>
* doc/Object.3: clarified Tcl_DecrRefCount docs [Bug: 1952]
* doc/array.n: clarified array pattern docs [Bug: 1330]
* doc/clock.n: fixed clock docs [Bug: 693]
* doc/lindex.n: clarified to account for new end-int behavior.
* doc/string.n: fixed formatting errors [Bug: 2188 2189]
* doc/tclvars.n: fixed doc error [Bug: 2042]
Diffstat (limited to 'doc/Object.3')
-rw-r--r-- | doc/Object.3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/Object.3 b/doc/Object.3 index 214695f..42a683f 100644 --- a/doc/Object.3 +++ b/doc/Object.3 @@ -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: Object.3,v 1.3 1999/04/16 00:46:32 stanton Exp $ +'\" RCS: @(#) $Id: Object.3,v 1.4 1999/08/09 16:30:34 hobbs Exp $ '\" .so man.macros .TH Tcl_Obj 3 8.0 Tcl "Tcl Library Procedures" @@ -293,7 +293,7 @@ reference to it from the formal parameter. When the called procedure returns, the interpreter calls \fBTcl_DecrRefCount\fR to decrement each argument's reference count. -When an object's reference count drops to zero, +When an object's reference count drops less than or equal to zero, \fBTcl_DecrRefCount\fR reclaims its storage. Most command procedures do not have to be concerned about reference counting since they use an object's value immediately |