diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-03-24 20:19:49 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-03-24 20:19:49 (GMT) |
commit | e27c66d81aa3904b675aa2851d14444b44c9555e (patch) | |
tree | a1b9c9fb440692f02f5b3a355e69ce695216cbf3 /generic/tclUtil.c | |
parent | 5e0c34678e24c5ffe05c8a04f4395416067cefc1 (diff) | |
download | tcl-e27c66d81aa3904b675aa2851d14444b44c9555e.zip tcl-e27c66d81aa3904b675aa2851d14444b44c9555e.tar.gz tcl-e27c66d81aa3904b675aa2851d14444b44c9555e.tar.bz2 |
Fix [15e74a2fe6]: Fix various typos
Diffstat (limited to 'generic/tclUtil.c')
-rw-r--r-- | generic/tclUtil.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tclUtil.c b/generic/tclUtil.c index a8bf795..aee2b15 100644 --- a/generic/tclUtil.c +++ b/generic/tclUtil.c @@ -2649,7 +2649,7 @@ Tcl_DStringInit( * Side effects: * Length bytes from "bytes" (or all of "bytes" if length is less than * zero) are added to the current value of the string. Memory gets - * reallocated if needed to accomodate the string's new size. + * reallocated if needed to accommodate the string's new size. * *---------------------------------------------------------------------- */ @@ -2753,7 +2753,7 @@ TclDStringAppendDString( * * Side effects: * String is reformatted as a list element and added to the current value - * of the string. Memory gets reallocated if needed to accomodate the + * of the string. Memory gets reallocated if needed to accommodate the * string's new size. * *---------------------------------------------------------------------- @@ -3958,12 +3958,12 @@ TclIndexEncode( */ if (idx > 0) { /* - * All end+postive or end-negative expressions + * All end+positive or end-negative expressions * always indicate "after the end". */ idx = after; } else if (idx < INT_MIN - TCL_INDEX_END) { - /* These indices always indicate "before the beginning */ + /* These indices always indicate "before the beginning" */ idx = before; } else { /* Encoded end-positive (or end+negative) are offset */ |