diff options
-rw-r--r-- | bot/cogs/superstarify/__init__.py | 2 | ||||
-rw-r--r-- | bot/interpreter.py | 2 | ||||
-rw-r--r-- | bot/utils/messages.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/bot/cogs/superstarify/__init__.py b/bot/cogs/superstarify/__init__.py index 6278beaa3..71dad0036 100644 --- a/bot/cogs/superstarify/__init__.py +++ b/bot/cogs/superstarify/__init__.py @@ -226,7 +226,7 @@ class Superstarify(Cog): @command(name='unsuperstarify', aliases=('release_nick', 'unstar')) @with_role(*MODERATION_ROLES) async def unsuperstarify(self, ctx: Context, member: Member) -> Optional[Message]: - """This command will the superstarify entry from our database, allowing the user to change their nickname.""" + """This command will remove the superstarify entry from our database, allowing the user to change their nickname.""" log.debug(f"Attempting to unsuperstarify the following user: {member.display_name}") embed = Embed() diff --git a/bot/interpreter.py b/bot/interpreter.py index 6ea49e026..a42b45a2d 100644 --- a/bot/interpreter.py +++ b/bot/interpreter.py @@ -14,7 +14,7 @@ class Interpreter(InteractiveInterpreter): """ Subclass InteractiveInterpreter to specify custom run functionality. - Helper class for internal eval + Helper class for internal eval. """ write_callable = None diff --git a/bot/utils/messages.py b/bot/utils/messages.py index 5058d42fc..549b33ca6 100644 --- a/bot/utils/messages.py +++ b/bot/utils/messages.py @@ -21,7 +21,7 @@ async def wait_for_deletion( client: Optional[Client] = None ) -> None: """ - Waits for up to `timeout` seconds for a reaction by any of the specified `user_ids` to delete the message. + Wait for up to `timeout` seconds for a reaction by any of the specified `user_ids` to delete the message. An `attach_emojis` bool may be specified to determine whether to attach the given `deletion_emojis` to the message in the given `context` |