summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2004-09-01 09:50:43 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2004-09-01 09:50:43 (GMT)
commit16b932f7c4cf8850d44cd00d7759e513af539903 (patch)
tree41dbbdb8a4bdf1c77cb9cccbe6cbeca2a945d0f9 /doc
parent05da5a98f0de68b9da67eb1d881ebe9a173741f8 (diff)
downloadtcl-16b932f7c4cf8850d44cd00d7759e513af539903.zip
tcl-16b932f7c4cf8850d44cd00d7759e513af539903.tar.gz
tcl-16b932f7c4cf8850d44cd00d7759e513af539903.tar.bz2
Correct some abbreviation usage.
Diffstat (limited to 'doc')
-rw-r--r--doc/CrtChannel.34
-rw-r--r--doc/Environment.34
-rw-r--r--doc/RegConfig.34
-rw-r--r--doc/regsub.n4
-rw-r--r--doc/safe.n6
5 files changed, 11 insertions, 11 deletions
diff --git a/doc/CrtChannel.3 b/doc/CrtChannel.3
index 0ce3e4c..e601a21 100644
--- a/doc/CrtChannel.3
+++ b/doc/CrtChannel.3
@@ -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: CrtChannel.3,v 1.17 2004/07/15 20:46:49 andreas_kupries Exp $
+'\" RCS: @(#) $Id: CrtChannel.3,v 1.18 2004/09/01 09:50:45 dkf Exp $
.so man.macros
.TH Tcl_CreateChannel 3 8.3 Tcl "Tcl Library Procedures"
.BS
@@ -350,7 +350,7 @@ structure, the following functions should be used to obtain the values:
.PP
The change to the structures was made in such a way that standard channel
types are binary compatible. However, channel types that use stacked
-channels (ie: TLS, Trf) have new versions to correspond to the above change
+channels (i.e. TLS, Trf) have new versions to correspond to the above change
since the previous code for stacked channels had problems.
.SH TYPENAME
diff --git a/doc/Environment.3 b/doc/Environment.3
index 5b7ff29..13afd7c 100644
--- a/doc/Environment.3
+++ b/doc/Environment.3
@@ -4,7 +4,7 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: Environment.3,v 1.1 2001/04/04 21:32:18 andreas_kupries Exp $
+'\" RCS: @(#) $Id: Environment.3,v 1.2 2004/09/01 09:50:45 dkf Exp $
'\"
.so man.macros
.TH Tcl_PutEnv 3 "7.5" Tcl "Tcl Library Procedures"
@@ -28,7 +28,7 @@ in native format.
\fBTcl_PutEnv\fR sets an environment variable. The information is
passed in a single string of the form NAME=value. This procedure is
intended to be a stand-in for the UNIX \fBputenv\fR system call. All
-tcl-based applications using \fBputenv\fR should redefine it to
+Tcl-based applications using \fBputenv\fR should redefine it to
\fBTcl_PutEnv\fR so that they will interface properly to the Tcl
runtime.
diff --git a/doc/RegConfig.3 b/doc/RegConfig.3
index 14d17d8..9816573 100644
--- a/doc/RegConfig.3
+++ b/doc/RegConfig.3
@@ -4,7 +4,7 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: RegConfig.3,v 1.2 2003/06/09 22:49:13 andreas_kupries Exp $
+'\" RCS: @(#) $Id: RegConfig.3,v 1.3 2004/09/01 09:50:45 dkf Exp $
.so man.macros
.TH Tcl_RegisterConfig 3 8.4 Tcl "Tcl Library Procedures"
.BS
@@ -80,7 +80,7 @@ array. This means that the caller has to make sure that the memory
holding this array is never released. This is the meaning behind the
word \fBnon-volatile\fR used earlier. The easiest way to accomplish
this is to define a global static array of Tcl_Config entries. See the
-file "generic/tclPkgConfig.c" in the sources of the tcl core for an
+file "generic/tclPkgConfig.c" in the sources of the Tcl core for an
example.
.PP
When called \fBTcl_RegisterConfig\fR will
diff --git a/doc/regsub.n b/doc/regsub.n
index 16ff77d..1d436a3 100644
--- a/doc/regsub.n
+++ b/doc/regsub.n
@@ -6,7 +6,7 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: regsub.n,v 1.10 2004/05/24 23:31:42 dkf Exp $
+'\" RCS: @(#) $Id: regsub.n,v 1.11 2004/09/01 09:50:45 dkf Exp $
'\"
.so man.macros
.TH regsub n 8.3 Tcl "Tcl Built-In Commands"
@@ -127,7 +127,7 @@ Insert double-quotes around the first instance of the word
regsub -nocase {\e<interesting\e>} $string {"&"} string
.CE
-Convert all non-ASCII and tcl-significant characters into \eu escape
+Convert all non-ASCII and Tcl-significant characters into \eu escape
sequences by using \fBregsub\fR and \fBsubst\fR in combination:
.CS
# This RE is just a character class for everything "bad"
diff --git a/doc/safe.n b/doc/safe.n
index 7825921..ac8e051 100644
--- a/doc/safe.n
+++ b/doc/safe.n
@@ -4,7 +4,7 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: safe.n,v 1.5 2004/03/17 18:14:12 das Exp $
+'\" RCS: @(#) $Id: safe.n,v 1.6 2004/09/01 09:50:45 dkf Exp $
'\"
.so man.macros
.TH "Safe Tcl" n 8.0 Tcl "Tcl Built-In Commands"
@@ -288,7 +288,7 @@ executing.
The only valid file names arguments
for the \fBsource\fR and \fBload\fR aliases provided to the slave
are path in the form of
-\fB[file join \fR\fItoken filename\fR\fB]\fR (ie, when using the
+\fB[file join \fR\fItoken filename\fR\fB]\fR (i.e. when using the
native file path formats: \fItoken\fR\fB/\fR\fIfilename\fR
on Unix and \fItoken\fR\fB\\\fIfilename\fR on Windows),
where \fItoken\fR is representing one of the directories
@@ -337,7 +337,7 @@ explicitly specifying your directory list with the \fB\-accessPath\fR flag
instead of relying on this default mechanism.
.PP
When the \fIaccessPath\fR is changed after the first creation or
-initialization (ie through \fBinterpConfigure -accessPath \fR\fIlist\fR),
+initialization (i.e. through \fBinterpConfigure -accessPath \fR\fIlist\fR),
an \fBauto_reset\fR is automatically evaluated in the safe interpreter
to synchronize its \fBauto_index\fR with the new token list.