From 47b177c645bd05a1298aebd982bd561b19f7a3bd Mon Sep 17 00:00:00 2001 From: arandomnewaccount <68355905+arandomnewaccount@users.noreply.github.com> Date: Tue, 4 May 2021 17:47:19 -0400 Subject: [PATCH] Update extending.md typo --- docs/extending.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/extending.md b/docs/extending.md index a3ac909..e4d1b11 100644 --- a/docs/extending.md +++ b/docs/extending.md @@ -77,7 +77,7 @@ def searchGuildMembers(self, guild_ids, query, limit, presences, user_ids): #not data["d"]["presences"] = presences self.gatewayobject.send(data) ``` -The only required part of these functions is the ```self.gatewayobject.send``` part. This sends messages to discum thru the gateway. +The only required part of these functions is the ```self.gatewayobject.send``` part. This sends messages to discord thru the gateway. ###### parse here's an example of a parse function (from discum > gateway > messages > parse.py) ```python