From eea70b53cd7ecfe55fe283906866a0462ea9c6b6 Mon Sep 17 00:00:00 2001 From: GoogleGenius <81032623+GoogleGenius@users.noreply.github.com> Date: Sun, 10 Jul 2022 23:05:09 -0500 Subject: [PATCH] Fix small typos in docstrings --- discord/object.py | 2 +- discord/raw_models.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/discord/object.py b/discord/object.py index 867eb27fe..b48b847e5 100644 --- a/discord/object.py +++ b/discord/object.py @@ -83,7 +83,7 @@ class Object(Hashable): try: id = int(id) except ValueError: - raise TypeError(f'id parameter must be convertable to int not {id.__class__!r}') from None + raise TypeError(f'id parameter must be convertible to int not {id.__class__!r}') from None else: self.id = id diff --git a/discord/raw_models.py b/discord/raw_models.py index 4c17a8df3..0cfcd1a09 100644 --- a/discord/raw_models.py +++ b/discord/raw_models.py @@ -447,7 +447,7 @@ class RawAppCommandPermissionsUpdateEvent(_RawReprMixin): Attributes ---------- target_id: :class:`int` - The ID of the command or application whos permissions were updated. + The ID of the command or application whose permissions were updated. When this is the application ID instead of a command ID, the permissions apply to all commands that do not contain explicit overwrites. application_id: :class:`int`