From e199d5494b942ad616d88197829d0a9f887833e1 Mon Sep 17 00:00:00 2001 From: Slipstream Date: Wed, 11 Jun 2025 16:23:56 -0600 Subject: [PATCH] Update typing command response for clarity in typing indicator example --- examples/typing_indicator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/typing_indicator.py b/examples/typing_indicator.py index 7beda77..1ac5917 100644 --- a/examples/typing_indicator.py +++ b/examples/typing_indicator.py @@ -67,7 +67,7 @@ class TypingCog(commands.Cog): @commands.command(name="typing") async def typing_test_command(self, ctx: commands.CommandContext): """Shows a typing indicator for 5 seconds.""" - await ctx.reply("Okay, I will pretend to be typing for 5 seconds.") + await ctx.reply("Showing typing indicator for 5 seconds...") try: async with client.typing(ctx.message.channel_id): print(f"Displaying typing indicator in channel {ctx.message.channel_id} for 5 seconds.")