diff options
| -rw-r--r-- | bot/cogs/doc.py | 2 |
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}`', |