From e7500f738c20d1784a68678f84a37e62677b005c Mon Sep 17 00:00:00 2001 From: Skezza <36114463+SkezzaB@users.noreply.github.com> Date: Tue, 30 Jun 2020 12:17:33 +0100 Subject: [PATCH] Fix typo with voice_client documentation --- discord/guild.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/guild.py b/discord/guild.py index 07a7d974d..a8ac04cfc 100644 --- a/discord/guild.py +++ b/discord/guild.py @@ -372,7 +372,7 @@ class Guild(Hashable): @property def voice_client(self): - """Optional[:class:`VoiceClient`:] Returns the :class:`VoiceClient` associated with this guild, if any.""" + """Optional[:class:`VoiceClient`]: Returns the :class:`VoiceClient` associated with this guild, if any.""" return self._state._get_voice_client(self.id) @property