diff options
Diffstat (limited to 'src/framework')
| -rw-r--r-- | src/framework/standard/create_help_command.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/framework/standard/create_help_command.rs b/src/framework/standard/create_help_command.rs index aba38cc..06f9dda 100644 --- a/src/framework/standard/create_help_command.rs +++ b/src/framework/standard/create_help_command.rs @@ -156,14 +156,14 @@ impl CreateHelpCommand { self } - /// Sets the colour for the embed if an error occured. + /// Sets the colour for the embed if no error occured. pub fn embed_success_colour(mut self, colour: Colour) -> Self { self.0.embed_success_colour = colour; self } - /// Sets the colour for the embed if no error occured. + /// Sets the colour for the embed if an error occured. pub fn embed_error_colour(mut self, colour: Colour) -> Self { self.0.embed_error_colour = colour; |