diff options
| author | Rapptz <[email protected]> | 2019-02-18 16:29:58 -0500 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2019-02-18 16:29:58 -0500 |
| commit | 3f06f247c039a23948e7bb0014ea31db533b4ba2 (patch) | |
| tree | ea22ae2ff05db7871e22f822c781f882db2c5be8 | |
| parent | [commands] add document comment to HelpFormatter.get_ending_note (diff) | |
| download | discord.py-3f06f247c039a23948e7bb0014ea31db533b4ba2.tar.xz discord.py-3f06f247c039a23948e7bb0014ea31db533b4ba2.zip | |
[commands] Fix up wording on HelpFormatter.get_ending_note
| -rw-r--r-- | discord/ext/commands/formatter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/ext/commands/formatter.py b/discord/ext/commands/formatter.py index faead747..d26e1f82 100644 --- a/discord/ext/commands/formatter.py +++ b/discord/ext/commands/formatter.py @@ -204,7 +204,7 @@ class HelpFormatter: return prefix + cmd.signature def get_ending_note(self): - """Returns help command's ending note. You can override this method for customization like i18n.""" + """Returns help command's ending note. This is mainly useful to override for i18n purposes.""" command_name = self.context.invoked_with return "Type {0}{1} command for more info on a command.\n" \ "You can also type {0}{1} category for more info on a category.".format(self.clean_prefix, command_name) |