summaryrefslogtreecommitdiffstats
path: root/doc/exec.n
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2004-04-22 12:55:15 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2004-04-22 12:55:15 (GMT)
commita0282a79c2c61b9dcf6bb86beebf783c5d0d2b15 (patch)
tree3e2890c608f2b4f7d21225e44519fd8046893705 /doc/exec.n
parent6ff198cb948e04a88ad771798ce3bf657ac3f8c2 (diff)
downloadtcl-a0282a79c2c61b9dcf6bb86beebf783c5d0d2b15.zip
tcl-a0282a79c2c61b9dcf6bb86beebf783c5d0d2b15.tar.gz
tcl-a0282a79c2c61b9dcf6bb86beebf783c5d0d2b15.tar.bz2
Spelling... :^/
Diffstat (limited to 'doc/exec.n')
-rw-r--r--doc/exec.n6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/exec.n b/doc/exec.n
index 19bff19..db0a35c 100644
--- a/doc/exec.n
+++ b/doc/exec.n
@@ -5,7 +5,7 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: exec.n,v 1.8 2004/04/22 12:48:25 dkf Exp $
+'\" RCS: @(#) $Id: exec.n,v 1.9 2004/04/22 12:55:15 dkf Exp $
'\"
.so man.macros
.TH exec n 7.6 Tcl "Tcl Built-In Commands"
@@ -340,7 +340,7 @@ if {[catch {exec grep foo bar.txt} results]} {
}
.CE
-When translating a command from a Unix shell invokation, care should
+When translating a command from a Unix shell invocation, care should
be taken over the fact that single quote characters have no special
significance to Tcl. Thus:
.CS
@@ -351,7 +351,7 @@ would be translated into something like:
exec awk {{sum += $1} END {print sum}} numbers.list
.CE
-If you are converting invokations involving shell globbing, you should
+If you are converting invocations involving shell globbing, you should
remember that Tcl does not handle globbing or expand things into
multiple arguments by default. Instead you should write things like
this: