From 687eaaa928dbb20d6c5146d13f501d70d889d106 Mon Sep 17 00:00:00 2001 From: ent3r <32072697+ent3r@users.noreply.github.com> Date: Mon, 3 Aug 2020 17:18:51 +0200 Subject: [PATCH] Fix formatting Removed bold on a colon --- PluralKit.Bot/Commands/Lists/ContextListExt.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PluralKit.Bot/Commands/Lists/ContextListExt.cs b/PluralKit.Bot/Commands/Lists/ContextListExt.cs index e687eeb8..f1efadb0 100644 --- a/PluralKit.Bot/Commands/Lists/ContextListExt.cs +++ b/PluralKit.Bot/Commands/Lists/ContextListExt.cs @@ -136,7 +136,7 @@ namespace PluralKit.Bot profile.Append($"\n**Birthdate**: {m.BirthdayString}"); if (m.ProxyTags.Count > 0) - profile.Append($"\n**Proxy tags:** {m.ProxyTagsString()}"); + profile.Append($"\n**Proxy tags**: {m.ProxyTagsString()}"); if (opts.IncludeMessageCount && m.MessageCountFor(lookupCtx) is {} count && count > 0) profile.Append($"\n**Message count:** {count}"); @@ -161,4 +161,4 @@ namespace PluralKit.Bot } } } -} \ No newline at end of file +}