mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
Replaced en-dash with hyphen for identifier equality (#6272)
This commit is contained in:
committed by
Andreas Rumpf
parent
82453825e9
commit
496716ee9b
@@ -130,7 +130,7 @@ Two identifiers are considered equal if the following algorithm returns true:
|
||||
.. code-block:: nim
|
||||
proc sameIdentifier(a, b: string): bool =
|
||||
a[0] == b[0] and
|
||||
a.replace(re"_|–", "").toLower == b.replace(re"_|–", "").toLower
|
||||
a.replace("_", "").toLower == b.replace("_", "").toLower
|
||||
|
||||
That means only the first letters are compared in a case sensitive manner. Other
|
||||
letters are compared case insensitively and underscores are ignored.
|
||||
|
||||
Reference in New Issue
Block a user