summaryrefslogtreecommitdiffstats
path: root/generic/tclUtil.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2013-01-04 11:14:59 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2013-01-04 11:14:59 (GMT)
commit8ccae052467b3b4ef6a42321289d1a8535c858d5 (patch)
treea2ed642c38ff21ba7fd8a3a8b25f0407daa58114 /generic/tclUtil.c
parentaa5bfc6d5bbe02732c290215d4f69c1f1ce37dda (diff)
parent09d1473b3be04898d6ec67abcad0b980fdd88df6 (diff)
downloadtcl-8ccae052467b3b4ef6a42321289d1a8535c858d5.zip
tcl-8ccae052467b3b4ef6a42321289d1a8535c858d5.tar.gz
tcl-8ccae052467b3b4ef6a42321289d1a8535c858d5.tar.bz2
merge trunk
Diffstat (limited to 'generic/tclUtil.c')
-rw-r--r--generic/tclUtil.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclUtil.c b/generic/tclUtil.c
index ddf067b..27e2474 100644
--- a/generic/tclUtil.c
+++ b/generic/tclUtil.c
@@ -167,7 +167,7 @@ const Tcl_ObjType tclEndOffsetType = {
* separating whitespace, or a string terminator. It is just another
* character in a list element.
*
- * The interpretaton of a formatted substring as a list element follows rules
+ * The interpretation of a formatted substring as a list element follows rules
* similar to the parsing of the words of a command in a Tcl script. Backslash
* substitution plays a key role, and is defined exactly as it is in command
* parsing. The same routine, TclParseBackslash() is used in both command
@@ -179,7 +179,7 @@ const Tcl_ObjType tclEndOffsetType = {
* Backslash substitution replaces an "escape sequence" of one or more
* characters starting with
* \u005c \ BACKSLASH
- * with a single character. The one character escape sequent case happens only
+ * with a single character. The one character escape sequence case happens only
* when BACKSLASH is the last character in the string. In all other cases, the
* escape sequence is at least two characters long.
*