Fix minor convention mistakes in basic examples

Co-authored-by: Narmy <67862800+NarmyOnDiscord@users.noreply.github.com>
This commit is contained in:
GoogleGenius
2022-04-30 18:40:42 -04:00
committed by GitHub
co-authored by Narmy
parent 14e83dff0e
commit 61105ce925
2 changed files with 9 additions and 8 deletions
+1 -1
View File
@@ -57,7 +57,7 @@ async def repeat(ctx, times: int, content='repeating...'):
@bot.command()
async def joined(ctx, member: discord.Member):
"""Says when a member joined."""
await ctx.send(f'{member.name} joined in {member.joined_at}')
await ctx.send(f'{member.name} joined {discord.utils.format_dt(member.joined_at)}')
@bot.group()