mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 18:02:05 +00:00
Added comma
"e.g." and "i.e." both usually take commas after, as they would in normal English ("for example, ..." and "that is, ..." respectively)
This commit is contained in:
@@ -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 =
|
||||
|
||||
Reference in New Issue
Block a user