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:
apense
2015-07-06 00:53:49 -04:00
parent c38956a850
commit d0f2ce3ae8

View File

@@ -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 =