diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-09-25 14:24:24 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-09-25 14:24:24 (GMT) |
commit | 67f864dc656ad9a88f134514172bc55a2c73c3d5 (patch) | |
tree | ec11ff23a6063c75412140b6d2d3eece1891c754 /tests/stringComp.test | |
parent | 00a4f18c383b2b24cb09871621ff49f7ea98e758 (diff) | |
download | tcl-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.test | 4 |
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} {} |