diff options
| author | Rapptz <[email protected]> | 2017-09-16 13:29:36 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-09-16 13:29:36 -0400 |
| commit | 305cc3acfa1f47161538a95a93f13074ae73eb6d (patch) | |
| tree | 7a23ce26c60828526dee70cf8367a0f654ab8a1b | |
| parent | Fix typo in http.create_channel (diff) | |
| download | discord.py-305cc3acfa1f47161538a95a93f13074ae73eb6d.tar.xz discord.py-305cc3acfa1f47161538a95a93f13074ae73eb6d.zip | |
Clarify VoiceClient.disconnect docs a little more.
| -rw-r--r-- | discord/voice_client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/voice_client.py b/discord/voice_client.py index fe89d62a..9fcc4ea7 100644 --- a/discord/voice_client.py +++ b/discord/voice_client.py @@ -256,7 +256,7 @@ class VoiceClient: def disconnect(self, *, force=False): """|coro| - Disconnects all connections to the voice client. + Disconnects this voice client from voice. """ if not force and not self._connected.is_set(): return |