diff options
| author | 2019-02-22 14:24:53 +0100 | |
|---|---|---|
| committer | 2019-02-22 14:24:53 +0100 | |
| commit | 4ce2e4ec912ce7ef81b4cb840a878e80feedb8b5 (patch) | |
| tree | fdf7ad6158358793eb809e1b06fb68d835fe14c5 | |
| parent | Merge branch 'bb-improvements' of github.com:python-discord/bot into bb-impro... (diff) | |
Adding square brackets to signal it's an argument, not a subcommand
Diffstat (limited to '')
| -rw-r--r-- | bot/cogs/alias.py | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/bot/cogs/alias.py b/bot/cogs/alias.py index bf59b6d15..313d66c95 100644 --- a/bot/cogs/alias.py +++ b/bot/cogs/alias.py @@ -74,7 +74,7 @@ class Alias:              self, ctx: Context, user: User, *, reason: str      ):          """ -        Alias for invoking <prefix>bigbrother watch user reason. +        Alias for invoking <prefix>bigbrother watch user [reason].          """          await self.invoke(ctx, "bigbrother watch", user, reason=reason) @@ -82,7 +82,7 @@ class Alias:      @command(name="unwatch", hidden=True)      async def bigbrother_unwatch_alias(self, ctx, user: User, *, reason: str):          """ -        Alias for invoking <prefix>bigbrother unwatch user reason. +        Alias for invoking <prefix>bigbrother unwatch user [reason].          """          await self.invoke(ctx, "bigbrother unwatch", user, reason=reason) @@ -106,7 +106,7 @@ class Alias:      @command(name="reload", hidden=True)      async def cogs_reload_alias(self, ctx, *, cog_name: str):          """ -        Alias for invoking <prefix>cogs reload cog_name. +        Alias for invoking <prefix>cogs reload [cog_name].          cog_name: str - name of the cog to be reloaded.          """ | 
