aboutsummaryrefslogtreecommitdiff
path: root/discord
diff options
context:
space:
mode:
authorAbhinav Singh <[email protected]>2021-08-28 01:31:44 +0530
committerGitHub <[email protected]>2021-08-27 16:01:44 -0400
commitf485f1b61269c4e846e4e8b9232d8ec10b173c21 (patch)
treecc2d67abcf10d1aadc75cc0b52fe2964c2628857 /discord
parentChange avatar_url type hint to Any instead of str (diff)
downloaddiscord.py-f485f1b61269c4e846e4e8b9232d8ec10b173c21.tar.xz
discord.py-f485f1b61269c4e846e4e8b9232d8ec10b173c21.zip
Fix a typo in docstrings of Client class
Diffstat (limited to 'discord')
-rw-r--r--discord/client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/client.py b/discord/client.py
index 678586e1..b6198d10 100644
--- a/discord/client.py
+++ b/discord/client.py
@@ -187,7 +187,7 @@ class Client:
enable_debug_events: :class:`bool`
Whether to enable events that are useful only for debugging gateway related information.
- Right now this involves :func:`on_socket_raw_receive` and :func`:`on_socket_raw_send`. If
+ Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If
this is ``False`` then those events will not be dispatched (due to performance considerations).
To enable these events, this must be set to ``True``. Defaults to ``False``.