diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/man2tcl.c | 2 | ||||
-rw-r--r-- | tools/mkdepend.tcl | 4 | ||||
-rw-r--r-- | tools/str2c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/tools/man2tcl.c b/tools/man2tcl.c index 8e59bea..66562f9 100644 --- a/tools/man2tcl.c +++ b/tools/man2tcl.c @@ -52,7 +52,7 @@ static int status; /* * The variable below is set to 1 if output should be generated. If it's 0, it - * means we're doing a pre-pass to make sure that the file can be properly + * means we're doing a prepass to make sure that the file can be properly * parsed. */ diff --git a/tools/mkdepend.tcl b/tools/mkdepend.tcl index b1ad076..90a3b92 100644 --- a/tools/mkdepend.tcl +++ b/tools/mkdepend.tcl @@ -252,7 +252,7 @@ proc compressDeps {depends} { # Adds a new set of path and replacement string to the global list. # # Arguments: -# newPathInfo comma seperated path and replacement string +# newPathInfo comma separated path and replacement string # # Results: # None. @@ -296,7 +296,7 @@ proc readInputListFile {objectListFile} { set fl [read $f] close $f - # fix native path seperator so it isn't treated as an escape. + # fix native path separator so it isn't treated as an escape. regsub -all {\\} $fl {/} fl # Treat the string as a list so filenames between double quotes are diff --git a/tools/str2c b/tools/str2c index 588abdf..e2c5208 100644 --- a/tools/str2c +++ b/tools/str2c @@ -29,7 +29,7 @@ proc translate {what} { set lg [string length $r] if {$lg<$MAX} { puts "/* - * Single part writeable string generated by str2c + * Single part writable string generated by str2c */ static char data\[\]=\"[translate $r]\";" } else { |