From d0f2ce3ae8cd74b705f49db042035ea9d243ab90 Mon Sep 17 00:00:00 2001 From: apense Date: Mon, 6 Jul 2015 00:53:49 -0400 Subject: [PATCH] Added comma "e.g." and "i.e." both usually take commas after, as they would in normal English ("for example, ..." and "that is, ..." respectively) --- lib/pure/hashes.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pure/hashes.nim b/lib/pure/hashes.nim index a0e6e26224..61c16129bc 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 =