diff options
author | 2021-06-05 10:43:06 +0530 | |
---|---|---|
committer | 2021-06-05 10:43:06 +0530 | |
commit | 4e525d921dcc2bfcc19ca96fdb6de9c90ffdf0c7 (patch) | |
tree | 30453267fa70d6e35830387ca12d58cd368ba379 | |
parent | changed single quotes to double to follow style guide (diff) |
made minor typo changes
-rw-r--r-- | bot/exts/evergreen/rps.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/evergreen/rps.py b/bot/exts/evergreen/rps.py index a5cacd90..c6bbff46 100644 --- a/bot/exts/evergreen/rps.py +++ b/bot/exts/evergreen/rps.py @@ -28,11 +28,11 @@ WINNER_DICT = { class RPS(commands.Cog): - """Rock Paper Scissor. The Classic Game!""" + """Rock Paper Scissors. The Classic Game!""" @commands.command(case_insensitive=True) async def rps(self, ctx: commands.Context, move: str) -> None: - """Play the classic game of Rock Paper Scissor with your own sir-lancebot!""" + """Play the classic game of Rock Paper Scissors with your own sir-lancebot!""" move = move.lower() player_mention = ctx.author.mention |