diff options
Diffstat (limited to 'bot/exts/evergreen/rps.py')
-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 |