summaryrefslogtreecommitdiff
path: root/misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc.c')
-rw-r--r--misc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc.c b/misc.c
index 994e0ea..dc6076e 100644
--- a/misc.c
+++ b/misc.c
@@ -81,7 +81,7 @@ static inline U32 rand_u32(U32 seed) {
#define plural_suffix(x) ((x) == 1 ? "" : "s")
static const char *indefinite_article(const char *s) {
- /* usually, words starting with "u" use "a" - "a unique thing", "a u64" */
+ // usually, words starting with "u" use "a" - "a unique thing", "a u64"
if (*s == 'a' || *s == 'e' || *s == 'i' || *s == 'o')
return "an";
return "a";