[docs] Fix typos

This commit is contained in:
apple502j
2022-03-08 07:36:15 +09:00
committed by GitHub
parent b308b54b89
commit e0d3521d16
3 changed files with 3 additions and 3 deletions

View File

@ -106,7 +106,7 @@ A quick example to showcase how events work:
print(f'Logged on as {self.user}!')
async def on_message(self, message):
print(f'Message from {messsage.author}: {message.content}')
print(f'Message from {message.author}: {message.content}')
client = MyClient()
client.run('my token goes here')