diff options
author | hobbs <hobbs> | 2005-09-30 18:53:33 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2005-09-30 18:53:33 (GMT) |
commit | 9746ade49f1bf6a262e7913e38ed2172d14cb3d8 (patch) | |
tree | 244acd310a77ae92fdcaacb0611a7034fde5a656 /library/init.tcl | |
parent | 5cb1ae055b6d9a99da40a8369a2ef4d020ca9350 (diff) | |
download | tcl-9746ade49f1bf6a262e7913e38ed2172d14cb3d8.zip tcl-9746ade49f1bf6a262e7913e38ed2172d14cb3d8.tar.gz tcl-9746ade49f1bf6a262e7913e38ed2172d14cb3d8.tar.bz2 |
fix comment typo
Diffstat (limited to 'library/init.tcl')
-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 } |