diff options
author | dgp <dgp@users.sourceforge.net> | 2003-01-27 15:25:46 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2003-01-27 15:25:46 (GMT) |
commit | 23a8498219d385c6f79ec5b70d28b4b87d6ac391 (patch) | |
tree | 0e7ecc2ed191b010f10b4427447fff6739522466 /library/tcltest | |
parent | f984c4ad3faf4e73075257544bf291bc7e7a1f51 (diff) | |
download | tcl-23a8498219d385c6f79ec5b70d28b4b87d6ac391.zip tcl-23a8498219d385c6f79ec5b70d28b4b87d6ac391.tar.gz tcl-23a8498219d385c6f79ec5b70d28b4b87d6ac391.tar.bz2 |
typo corrections in comments.
Diffstat (limited to 'library/tcltest')
-rw-r--r-- | library/tcltest/tcltest.tcl | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/library/tcltest/tcltest.tcl b/library/tcltest/tcltest.tcl index bc912f0..291c564 100644 --- a/library/tcltest/tcltest.tcl +++ b/library/tcltest/tcltest.tcl @@ -16,13 +16,14 @@ # Contributions from Don Porter, NIST, 2002. (not subject to US copyright) # All rights reserved. # -# RCS: @(#) $Id: tcltest.tcl,v 1.75 2002/09/22 18:19:26 dgp Exp $ +# RCS: @(#) $Id: tcltest.tcl,v 1.76 2003/01/27 15:25:46 dgp Exp $ package require Tcl 8.3 ;# uses [glob -directory] namespace eval tcltest { # When the version number changes, be sure to update the pkgIndex.tcl file, - # and the install directory in the Makefiles. + # and the install directory in the Makefiles. When the minor version + # changes (new feature) be sure to update the man page as well. variable Version 2.2.1 # Compatibility support for dumb variables defined in tcltest 1 @@ -171,12 +172,13 @@ namespace eval tcltest { # save the original environment so that it can be restored later ArrayDefault originalEnv [array get ::env] - # initialize numTests array to keep track fo the number of tests + # initialize numTests array to keep track of the number of tests # that pass, fail, and are skipped. ArrayDefault numTests [list Total 0 Passed 0 Skipped 0 Failed 0] - # numTests will store test files as indices and the list of files - # (that should not have been) left behind by the test files. + # createdNewFiles will store test files as indices and the list of + # files (that should not have been) left behind by the test files + # as values. ArrayDefault createdNewFiles {} # initialize skippedBecause array to keep track of constraints that |