diff options
| author | hobbs <hobbs> | 2005-09-30 18:53:33 (GMT) |
|---|---|---|
| committer | hobbs <hobbs> | 2005-09-30 18:53:33 (GMT) |
| commit | 8b57da10b65c46222a0ec0ea2c76fe3d324c8e5e (patch) | |
| tree | 244acd310a77ae92fdcaacb0611a7034fde5a656 | |
| parent | c499d178e893596b6beca8482cea9d354aa1cb98 (diff) | |
| download | tcl-8b57da10b65c46222a0ec0ea2c76fe3d324c8e5e.zip tcl-8b57da10b65c46222a0ec0ea2c76fe3d324c8e5e.tar.gz tcl-8b57da10b65c46222a0ec0ea2c76fe3d324c8e5e.tar.bz2 | |
fix comment typo
| -rw-r--r-- | library/init.tcl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/init.tcl b/library/init.tcl index cffe809..483e79e 100644 --- a/library/init.tcl +++ b/library/init.tcl @@ -3,7 +3,7 @@ # Default system startup file for Tcl-based applications. Defines # "unknown" procedure and auto-load facilities. # -# RCS: @(#) $Id: init.tcl,v 1.83 2005/09/30 01:05:20 hobbs Exp $ +# RCS: @(#) $Id: init.tcl,v 1.84 2005/09/30 18:53:33 hobbs Exp $ # # Copyright (c) 1991-1993 The Regents of the University of California. # Copyright (c) 1994-1996 Sun Microsystems, Inc. @@ -106,7 +106,7 @@ namespace eval tcl { set val Inf foreach arg $args { # This will handle forcing the numeric value without - # ruining the interval type of a numeric object + # ruining the internal type of a numeric object if {[catch {expr {double($arg)}} err]} { return -code error $err } @@ -122,7 +122,7 @@ namespace eval tcl { set val -Inf foreach arg $args { # This will handle forcing the numeric value without - # ruining the interval type of a numeric object + # ruining the internal type of a numeric object if {[catch {expr {double($arg)}} err]} { return -code error $err } |
