summaryrefslogtreecommitdiffstats
path: root/tests/stringComp.test
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-09-25 14:24:24 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-09-25 14:24:24 (GMT)
commit67f864dc656ad9a88f134514172bc55a2c73c3d5 (patch)
treeec11ff23a6063c75412140b6d2d3eece1891c754 /tests/stringComp.test
parent00a4f18c383b2b24cb09871621ff49f7ea98e758 (diff)
downloadtcl-67f864dc656ad9a88f134514172bc55a2c73c3d5.zip
tcl-67f864dc656ad9a88f134514172bc55a2c73c3d5.tar.gz
tcl-67f864dc656ad9a88f134514172bc55a2c73c3d5.tar.bz2
It's "utf-8", not "utf8" or "UTF8"
Diffstat (limited to 'tests/stringComp.test')
-rw-r--r--tests/stringComp.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/stringComp.test b/tests/stringComp.test
index 1cd0193..a17390d 100644
--- a/tests/stringComp.test
+++ b/tests/stringComp.test
@@ -100,11 +100,11 @@ foreach {tname tbody tresult tcode} {
{unicode} {string compare \334 \u00fc} -1 {}
{unicode} {string compare \334\334\334\374\374 \334\334\334\334\334} 1 {}
{high bit} {
- # This test will fail if the underlying comparaison
+ # This test will fail if the underlying comparison
# is using signed chars instead of unsigned chars.
# (like SunOS's default memcmp thus the compat/memcmp.c)
string compare "\x80" "@"
- # Nb this tests works also in utf8 space because \x80 is
+ # Nb this tests works also in utf-8 space because \x80 is
# translated into a 2 or more bytelength but whose first byte has
# the high bit set.
} {1} {}