summary refs log tree commit diff stats
path: root/doc/manual
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2017-04-02 15:21:10 +0200
committerAndreas Rumpf <rumpf_a@web.de>2017-04-02 23:41:29 +0200
commitf520dfbfabe1134d92214c66f2e1fcd222053771 (patch)
tree0f08a0c85075f9db127b51704f959b30d6ad089e /doc/manual
parentd587b6a25f9976abad9bf4b7039dd0c1f31b2913 (diff)
downloadNim-f520dfbfabe1134d92214c66f2e1fcd222053771.tar.gz
remove en-dash from the language
Diffstat (limited to 'doc/manual')
-rw-r--r--doc/manual/lexing.txt3
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/manual/lexing.txt b/doc/manual/lexing.txt
index 7ffd5eb1c..d4c11adf7 100644
--- a/doc/manual/lexing.txt
+++ b/doc/manual/lexing.txt
@@ -133,8 +133,7 @@ Two identifiers are considered equal if the following algorithm returns true:
       a.replace(re"_|–", "").toLower == b.replace(re"_|–", "").toLower
 
 That means only the first letters are compared in a case sensitive manner. Other
-letters are compared case insensitively and underscores and en-dash (Unicode
-point U+2013) are ignored.
+letters are compared case insensitively and underscores are ignored.
 
 This rather unorthodox way to do identifier comparisons is called
 `partial case insensitivity`:idx: and has some advantages over the conventional