From f485f1b61269c4e846e4e8b9232d8ec10b173c21 Mon Sep 17 00:00:00 2001 From: Abhinav Singh <84363727+swayyed@users.noreply.github.com> Date: Sat, 28 Aug 2021 01:31:44 +0530 Subject: [PATCH] Fix a typo in docstrings of Client class --- discord/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/client.py b/discord/client.py index 678586e14..b6198d109 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``.