summaryrefslogtreecommitdiffstats
path: root/generic/tclParse.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2018-11-24 09:00:26 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2018-11-24 09:00:26 (GMT)
commit8653af3a2e1be81e10e15dccad4ecf4b073808b9 (patch)
tree5e6c723ce00201e81270370a11a40f80f1bf45c5 /generic/tclParse.c
parentd1e9efc1de9cabf20f451a1a214fcc527cb84257 (diff)
downloadtcl-8653af3a2e1be81e10e15dccad4ecf4b073808b9.zip
tcl-8653af3a2e1be81e10e15dccad4ecf4b073808b9.tar.gz
tcl-8653af3a2e1be81e10e15dccad4ecf4b073808b9.tar.bz2
comment typo's
Diffstat (limited to 'generic/tclParse.c')
-rw-r--r--generic/tclParse.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclParse.c b/generic/tclParse.c
index 00b83a1..4b6c4be 100644
--- a/generic/tclParse.c
+++ b/generic/tclParse.c
@@ -890,7 +890,7 @@ TclParseBackslash(
count += TclParseHex(p+1, (numBytes > 3) ? 2 : numBytes-2, &result);
if (count == 2) {
/*
- * No hexadigits -> This is just "x".
+ * No hexdigits -> This is just "x".
*/
result = 'x';
@@ -905,7 +905,7 @@ TclParseBackslash(
count += TclParseHex(p+1, (numBytes > 5) ? 4 : numBytes-2, &result);
if (count == 2) {
/*
- * No hexadigits -> This is just "u".
+ * No hexdigits -> This is just "u".
*/
result = 'u';
}
@@ -914,7 +914,7 @@ TclParseBackslash(
count += TclParseHex(p+1, (numBytes > 9) ? 8 : numBytes-2, &result);
if (count == 2) {
/*
- * No hexadigits -> This is just "U".
+ * No hexdigits -> This is just "U".
*/
result = 'U';
}