From 153b5ee764c0c96e75d9d683ba7603762fee31e7 Mon Sep 17 00:00:00 2001 From: SeanOMik Date: Thu, 18 Jun 2020 18:12:44 -0500 Subject: [PATCH] Fix documentation generation error --- src/emoji.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/emoji.nim b/src/emoji.nim index 4eb64c7..1970665 100644 --- a/src/emoji.nim +++ b/src/emoji.nim @@ -56,7 +56,7 @@ proc `$`*(emoji: Emoji): string = result = ":" & result & ":" proc `==`*(a: Emoji, b: Emoji): bool = - ## Check if two `Emoji`s are equal. + ## Check if two Emojis are equal. # Check if emojis have name but no id if (a.id == 0 and b.id == 0 and a.name.isEmptyOrWhitespace() and b.name.isEmptyOrWhitespace()): return a.name == b.name