From 5fa54d196e8c7e6caffdfd1ee374febeaaeac157 Mon Sep 17 00:00:00 2001 From: stuarth Date: Sun, 3 Feb 2019 16:13:01 -0500 Subject: [PATCH] Fix typo in API documentation. --- docs/api.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api.rst b/docs/api.rst index c8814b1a9..bdb577804 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -80,7 +80,7 @@ overriding the specific events. For example: :: class MyClient(discord.Client): async def on_message(self, message): - if message.author != self.user: + if message.author == self.user: return if message.content.startswith('$hello'):