summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2024-02-16 12:41:37 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2024-02-16 12:41:37 (GMT)
commite72fd5872169ca0c63fac989f1a8d7bb0f951edc (patch)
tree60b28b499d013447563a9356fec0f8262954a1a3
parent61e3bfcdc3fbf97cdb619a036da2d7d655e05ce6 (diff)
downloadtcl-e72fd5872169ca0c63fac989f1a8d7bb0f951edc.zip
tcl-e72fd5872169ca0c63fac989f1a8d7bb0f951edc.tar.gz
tcl-e72fd5872169ca0c63fac989f1a8d7bb0f951edc.tar.bz2
Fix [e646d28f1a]: 8.6 Documentation/comment typo fixes
-rw-r--r--doc/ParseCmd.32
-rw-r--r--generic/tclNotify.c2
-rw-r--r--generic/tclOO.c4
-rw-r--r--generic/tclPkg.c2
-rw-r--r--tests/cmdMZ.test2
-rw-r--r--tests/nre.test2
6 files changed, 7 insertions, 7 deletions
diff --git a/doc/ParseCmd.3 b/doc/ParseCmd.3
index 40a0818..3b80d2a 100644
--- a/doc/ParseCmd.3
+++ b/doc/ParseCmd.3
@@ -159,7 +159,7 @@ occurs while parsing the command then \fBTCL_ERROR\fR is returned, an
error message is left in \fIinterp\fR's result (if \fIinterp\fR is not
NULL), and no information is left at \fI*parsePtr\fR.
.PP
-\fBTcl_ParseVar\fR parse a Tcl variable reference such as \fB$abc\fR
+\fBTcl_ParseVar\fR parses a Tcl variable reference such as \fB$abc\fR
or \fB$x([expr {$index + 1}])\fR from the beginning of its \fIstart\fR
argument. The first character of \fIstart\fR must be \fB$\fR. If
the variable name is parsed successfully, \fBTcl_ParseVar\fR returns a
diff --git a/generic/tclNotify.c b/generic/tclNotify.c
index 3dbc58b..1d750c4 100644
--- a/generic/tclNotify.c
+++ b/generic/tclNotify.c
@@ -1040,7 +1040,7 @@ Tcl_ServiceAll(void)
}
/*
- * We need to turn off event servicing like we to in Tcl_DoOneEvent, to
+ * We need to turn off event servicing like we do in Tcl_DoOneEvent, to
* avoid recursive calls.
*/
diff --git a/generic/tclOO.c b/generic/tclOO.c
index 4efdd9e..86c4087 100644
--- a/generic/tclOO.c
+++ b/generic/tclOO.c
@@ -403,7 +403,7 @@ InitFoundation(
fPtr->objectCls = TclOOAllocClass(interp,
AllocObject(interp, "object", (Namespace *)fPtr->ooNs, NULL));
/*
- * Corresponding TclOODecrRefCount in KillFoudation.
+ * Corresponding TclOODecrRefCount in KillFoundation.
*/
AddRef(fPtr->objectCls->thisPtr);
@@ -429,7 +429,7 @@ InitFoundation(
AllocObject(interp, "class", (Namespace *)fPtr->ooNs, NULL));
/*
- * Corresponding TclOODecrRefCount in KillFoudation.
+ * Corresponding TclOODecrRefCount in KillFoundation.
*/
AddRef(fPtr->classCls->thisPtr);
diff --git a/generic/tclPkg.c b/generic/tclPkg.c
index ec932f1..461c343 100644
--- a/generic/tclPkg.c
+++ b/generic/tclPkg.c
@@ -1430,7 +1430,7 @@ CheckVersionAndConvert(
int hasunstable = 0;
/*
* 4* assuming that each char is a separator (a,b become ' -x ').
- * 4+ to have spce for an additional -2 at the end
+ * 4+ to have space for an additional -2 at the end
*/
char *ibuf = ckalloc(4 + 4*strlen(string));
char *ip = ibuf;
diff --git a/tests/cmdMZ.test b/tests/cmdMZ.test
index 66213f9..ff6efaa 100644
--- a/tests/cmdMZ.test
+++ b/tests/cmdMZ.test
@@ -405,7 +405,7 @@ test cmdMZ-6.5a {Tcl_TimeRateObjCmd: result format and one iteration} {
test cmdMZ-6.5b {Tcl_TimeRateObjCmd: result format without iterations} {
regexp {^0 \ws/# 0 # 0 #/sec 0 net-ms$} [timerate {} 0 0]
} 1
-test cmdMZ-6.6 {Tcl_TimeRateObjCmd: slower commands take longer, but it remains almost the same time of measument} -body {
+test cmdMZ-6.6 {Tcl_TimeRateObjCmd: slower commands take longer, but it remains almost the same time of measurement} -body {
set m1 [timerate {_nrt_sleep 0.01} 50]
set m2 [timerate {_nrt_sleep 1.00} 50]
list [list \
diff --git a/tests/nre.test b/tests/nre.test
index 7cf06d1..2027839 100644
--- a/tests/nre.test
+++ b/tests/nre.test
@@ -1,4 +1,4 @@
-# Commands covered: proc, apply, [interp alias], [namespce import]
+# Commands covered: proc, apply, [interp alias], [namespace import]
#
# This file contains a collection of tests for the non-recursive executor that
# avoids recursive calls to TEBC. Only the NRE behaviour is tested here, the