diff options
Diffstat (limited to 'library/history.tcl')
-rw-r--r-- | library/history.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/history.tcl b/library/history.tcl index 4867021..5dd6b06 100644 --- a/library/history.tcl +++ b/library/history.tcl @@ -268,7 +268,7 @@ proc ::tcl::HistIndex {event} { return -code error "event \"$event\" is too far in the past" } if {$i > $history(nextid)} { - return -code error "event \"$event\" hasn't occured yet" + return -code error "event \"$event\" hasn't occurred yet" } return $i } |