summaryrefslogtreecommitdiffstats
path: root/doc/proc.n
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2012-03-11 17:03:00 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2012-03-11 17:03:00 (GMT)
commitc93c3a3b39929c9a7f1c816f4dc8a058f9eea85c (patch)
tree505d98c9c1a78785f5425cbf44b19004b4d49516 /doc/proc.n
parent014ce74e1d7d90d99e3b310e2e4a923f789802a2 (diff)
downloadtcl-c93c3a3b39929c9a7f1c816f4dc8a058f9eea85c.zip
tcl-c93c3a3b39929c9a7f1c816f4dc8a058f9eea85c.tar.gz
tcl-c93c3a3b39929c9a7f1c816f4dc8a058f9eea85c.tar.bz2
A number of small spelling and wording fixes in the docs.
Diffstat (limited to 'doc/proc.n')
-rw-r--r--doc/proc.n4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/proc.n b/doc/proc.n
index bd5df09..570a37d 100644
--- a/doc/proc.n
+++ b/doc/proc.n
@@ -53,7 +53,7 @@ error).
There is one special case to permit procedures with
variable numbers of arguments. If the last formal argument has the name
\fBargs\fR, then a call to the procedure may contain more actual arguments
-than the procedure has formals. In this case, all of the actual arguments
+than the procedure has formal arguments. In this case, all of the actual arguments
starting at the one that would be assigned to \fBargs\fR are combined into
a list (as if the \fBlist\fR command had been used); this combined value
is assigned to the local variable \fBargs\fR.
@@ -66,7 +66,7 @@ Other variables can only be accessed by invoking one of the \fBglobal\fR,
\fBvariable\fR, \fBupvar\fR or \fBnamespace upvar\fR commands.
The current namespace when \fIbody\fR is executed will be the
namespace that the procedure's name exists in, which will be the
-namespace that itwas created in unless it has been changed with
+namespace that it was created in unless it has been changed with
\fBrename\fR.
'\" We may change this! It makes [variable] unstable when renamed and is
'\" frankly pretty crazy, but doing it right is harder than it looks.