Skip to content

Commit a8f35f7

Browse files
authored
Improve helpset showaliases docstring (#5376)
1 parent 6eb922e commit a8f35f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

redbot/core/core_commands.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3155,9 +3155,9 @@ async def helpset_showaliases(self, ctx: commands.Context, show_aliases: bool =
31553155
show_aliases = not await ctx.bot._config.help.show_aliases()
31563156
await ctx.bot._config.help.show_aliases.set(show_aliases)
31573157
if show_aliases:
3158-
await ctx.send(_("Help will show commands aliases."))
3158+
await ctx.send(_("Help will now show command aliases."))
31593159
else:
3160-
await ctx.send(_("Help will not show commands aliases."))
3160+
await ctx.send(_("Help will no longer show command aliases."))
31613161

31623162
@helpset.command(name="usetick")
31633163
async def helpset_usetick(self, ctx: commands.Context, use_tick: bool = None):

0 commit comments

Comments
 (0)