diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-11-20 10:23:13 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-11-20 10:23:13 (GMT) |
commit | 75a121d773012cc6cd212b1e0b23a156399e2cd5 (patch) | |
tree | e782790f9b0385d0f50f6c80a170031deb9cef55 /library/init.tcl | |
parent | adc8a8bbdfc5a2db405f03a4c2af2adfa5d0f250 (diff) | |
parent | bc3e198cba9e40c015a6acfa992c69434274dde6 (diff) | |
download | tcl-75a121d773012cc6cd212b1e0b23a156399e2cd5.zip tcl-75a121d773012cc6cd212b1e0b23a156399e2cd5.tar.gz tcl-75a121d773012cc6cd212b1e0b23a156399e2cd5.tar.bz2 |
merge core-8-branch
Diffstat (limited to 'library/init.tcl')
-rw-r--r-- | library/init.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/init.tcl b/library/init.tcl index 4ef78a5..a75de34 100644 --- a/library/init.tcl +++ b/library/init.tcl @@ -79,7 +79,7 @@ namespace eval tcl { proc min {args} { if {![llength $args]} { return -code error \ - "too few arguments to math function \"min\"" + "too few arguments for math function \"min\"" } set val Inf foreach arg $args { @@ -95,7 +95,7 @@ namespace eval tcl { proc max {args} { if {![llength $args]} { return -code error \ - "too few arguments to math function \"max\"" + "too few arguments for math function \"max\"" } set val -Inf foreach arg $args { |