Skip to content

Commit 4f64b3d

Browse files
committed
Bug [f6adf9f137] : correct to-too in error message. Thanks Massimo !
1 parent 365c068 commit 4f64b3d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/struct/matrix.tcl

+2-2
Original file line numberDiff line numberDiff line change
@@ -2687,12 +2687,12 @@ proc ::struct::matrix::CheckSerialization {ser rvar cvar dvar} {
26872687

26882688
if {[llength $d] > $r} {
26892689
return -code error \
2690-
"error in serialization: data for to many rows."
2690+
"error in serialization: data for too many rows."
26912691
}
26922692
foreach rv $d {
26932693
if {[llength $rv] > $c} {
26942694
return -code error \
2695-
"error in serialization: data for to many columns."
2695+
"error in serialization: data for too many columns."
26962696
}
26972697
}
26982698

0 commit comments

Comments
 (0)