diff options
author | 2022-02-01 20:56:14 +0000 | |
---|---|---|
committer | 2022-02-01 20:56:14 +0000 | |
commit | f68b27768db44cabbc2ae4e66a42fa040a937958 (patch) | |
tree | 91659e6b12b8f7cb605b009f08ef474a9f9b16c6 | |
parent | 🚨 Make docstring more concise (diff) |
💡 Correct docstring to explain functionality
-rw-r--r-- | bot/exts/filters/filtering.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/filters/filtering.py b/bot/exts/filters/filtering.py index 6c70ab397..5ea18d8f1 100644 --- a/bot/exts/filters/filtering.py +++ b/bot/exts/filters/filtering.py @@ -209,7 +209,7 @@ class Filtering(Cog): @Cog.listener() async def on_voice_state_update(self, member: Member, before: VoiceState, after: VoiceState) -> None: - """Checks for bad words in usernames when users join or change voice channels.""" + """Checks for bad words in usernames when users initially joins a voice channel.""" if after.channel and not before.channel: await self.check_bad_words_in_name(member) |