diff options
Diffstat (limited to 'modules/commands/os_reload.cpp')
-rw-r--r-- | modules/commands/os_reload.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/commands/os_reload.cpp b/modules/commands/os_reload.cpp index 722213f8f..7ae3228e4 100644 --- a/modules/commands/os_reload.cpp +++ b/modules/commands/os_reload.cpp @@ -19,7 +19,7 @@ class CommandOSReload : public Command this->SetDesc(_("Reload services' configuration file")); } - void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) anope_override + void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) override { try { @@ -40,13 +40,13 @@ class CommandOSReload : public Command } } - bool OnHelp(CommandSource &source, const Anope::string &subcommand) anope_override + bool OnHelp(CommandSource &source, const Anope::string &subcommand) override { this->SendSyntax(source); source.Reply(" "); - source.Reply(_("Causes Services to reload the configuration file. Note that\n" - "some directives still need the restart of the Services to\n" - "take effect (such as Services' nicknames, activation of the\n" + source.Reply(_("Causes services to reload the configuration file. Note that\n" + "some directives still need the restart of the services to\n" + "take effect (such as services' nicknames, activation of the\n" "session limitation, etc.).")); return true; } |