refactor(commands): tweak descriptions

This commit is contained in:
Ryan 2025-06-08 12:56:41 -04:00
parent 5344e89c26
commit 5c030a0557
Signed by: ErrorNoInternet
GPG Key ID: 2486BFB7B1E6A4A3
2 changed files with 2 additions and 2 deletions

View File

@ -165,7 +165,7 @@ async def clear(message):
tokens = commands.tokenize(message.content) tokens = commands.tokenize(message.content)
parser = arguments.ArgumentParser( parser = arguments.ArgumentParser(
tokens[0], 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( parser.add_argument(
"count", "count",

View File

@ -240,7 +240,7 @@ async def queue_or_play(message, edited=False):
async def skip(message): async def skip(message):
tokens = commands.tokenize(message.content) 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( parser.add_argument(
"-n", "-n",
"--next", "--next",