diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pure/hashes.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/hashes.nim b/lib/pure/hashes.nim index a0e6e2622..61c16129b 100644 --- a/lib/pure/hashes.nim +++ b/lib/pure/hashes.nim @@ -116,7 +116,7 @@ proc hash*(x: char): Hash {.inline.} = result = ord(x) proc hash*[T: Ordinal](x: T): Hash {.inline.} = - ## efficient hashing of other ordinal types (e.g. enums) + ## efficient hashing of other ordinal types (e.g., enums) result = ord(x) proc hash*(x: string): Hash = |