aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Numerlor <[email protected]>2019-11-10 19:39:14 +0100
committerGravatar Numerlor <[email protected]>2019-11-10 19:39:14 +0100
commit7de5156a7719f0639021e8186f7ea17f5b853af7 (patch)
tree5e03b233cea45c55268d5169f9ad1dd76064871b
parentfix signatures and descriptions not being found when present (diff)
Add a newline after signatures for readability
-rw-r--r--bot/cogs/doc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/doc.py b/bot/cogs/doc.py
index 6e50cd27d..653d48528 100644
--- a/bot/cogs/doc.py
+++ b/bot/cogs/doc.py
@@ -326,7 +326,7 @@ class Doc(commands.Cog):
else:
embed_description = "".join(f"```py\n{textwrap.shorten(signature, 500)}```" for signature in signatures)
- embed_description += description
+ embed_description += f"\n{description}"
embed = discord.Embed(
title=f'`{symbol}`',