diff options
author | apense <apense@users.noreply.github.com> | 2015-07-09 13:49:47 -0400 |
---|---|---|
committer | apense <apense@users.noreply.github.com> | 2015-07-09 13:49:47 -0400 |
commit | 48b0de8ab4dee8e6cd126a817058425a1fb446c1 (patch) | |
tree | 7689b58272d22a7e45f698eadd78f31568f8fb9f /lib | |
parent | 5fd7b7850ab49c5e3067e1c564fc0e6080f71798 (diff) | |
download | Nim-48b0de8ab4dee8e6cd126a817058425a1fb446c1.tar.gz |
Corrected proc name in assertion
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pure/unicode.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/unicode.nim b/lib/pure/unicode.nim index 6c72de17c..5e20db32b 100644 --- a/lib/pure/unicode.nim +++ b/lib/pure/unicode.nim @@ -1330,4 +1330,4 @@ when isMainModule: assert reversed("先秦兩漢") == "漢兩秦先" assert reversed("as⃝df̅") == "f̅ds⃝a" assert reversed("a⃞b⃞c⃞") == "c⃞b⃞a⃞" - assert len(runesIn("as⃝df̅")) == runeLen("as⃝df̅") + assert len(toRunes("as⃝df̅")) == runeLen("as⃝df̅") |