✏️ typos

This commit is contained in:
ddorn 2020-04-29 16:48:11 +02:00
parent 99b9fa091a
commit 4c16ed4aff
2 changed files with 5 additions and 4 deletions

View File

@ -63,7 +63,7 @@ class DevCog(Cog, name="Dev tools"):
@has_role(Role.DEV)
async def reload_cmd(self, ctx, name):
"""
(dev) Recharge une catégorie de commande.
(dev) Recharge une catégorie de commandes.
A utiliser quand le code change. Arguments
possibles: `teams`, `tirages`, `dev`.
@ -98,11 +98,11 @@ class DevCog(Cog, name="Dev tools"):
await ctx.send(f":tada: L'extension **{name}** a bien été ajoutée !")
# noinspection PyUnreachableCode
@command(name="setup-roles")
@command(name="setup", hidden=True)
@has_role(Role.DEV)
async def setup_roles(self, ctx):
"""
(dev) Temporary command to setup the server.
(dev) Commande temporaire pour setup le serveur.
"""
return

View File

@ -53,6 +53,7 @@ class MiscCog(Cog, name="Divers"):
@command(name="status")
async def status_cmd(self, ctx: Context):
"""Affiche des informations à propos du serveur."""
guild: Guild = ctx.guild
embed = discord.Embed(title="État du serveur", color=EMBED_COLOR)
benevoles = [g for g in guild.members if has_role(g, Role.BENEVOLE)]
@ -80,7 +81,7 @@ class MiscCog(Cog, name="Divers"):
@command(name="help", aliases=["h"])
async def help_cmd(self, ctx: Context, *args):
"""Affiche ce message"""
"""Affiche des détails à propos d'une commande."""
if not args:
await self.send_bot_help(ctx)