diff --git a/commands/tools.py b/commands/tools.py index 9dd4445..22bf68e 100644 --- a/commands/tools.py +++ b/commands/tools.py @@ -165,7 +165,7 @@ async def clear(message): tokens = commands.tokenize(message.content) parser = arguments.ArgumentParser( tokens[0], - "bulk delete messages in the current channel matching certain criteria", + "bulk delete messages in the current channel matching specified criteria", ) parser.add_argument( "count", diff --git a/commands/voice/queue.py b/commands/voice/queue.py index 3f12634..f3b84ce 100644 --- a/commands/voice/queue.py +++ b/commands/voice/queue.py @@ -240,7 +240,7 @@ async def queue_or_play(message, edited=False): async def skip(message): tokens = commands.tokenize(message.content) - parser = arguments.ArgumentParser(tokens[0], "skip the currently playing song") + parser = arguments.ArgumentParser(tokens[0], "skip the song currently playing") parser.add_argument( "-n", "--next",