summaryrefslogtreecommitdiff
path: root/modules/commands/ns_set.cpp
diff options
context:
space:
mode:
authorVal Lorentz <progval+git@progval.net>2024-01-05 22:34:26 +0100
committerGitHub <noreply@github.com>2024-01-05 21:34:26 +0000
commit388858aee68f8c34264cc27278102fc2fdfb40fb (patch)
tree90dd3be1e84bd7ed70269f56875b2d3ea198afe0 /modules/commands/ns_set.cpp
parentf22703df595c7641249050e1a902c2718e82e834 (diff)
Fix inconsistent capitalization of 'services'.
Diffstat (limited to 'modules/commands/ns_set.cpp')
-rw-r--r--modules/commands/ns_set.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/commands/ns_set.cpp b/modules/commands/ns_set.cpp
index 6c2a60704..ee4dd45b5 100644
--- a/modules/commands/ns_set.cpp
+++ b/modules/commands/ns_set.cpp
@@ -410,7 +410,7 @@ class CommandNSSetDisplay : public Command
public:
CommandNSSetDisplay(Module *creator, const Anope::string &sname = "nickserv/set/display", size_t min = 1) : Command(creator, sname, min, min + 1)
{
- this->SetDesc(_("Set the display of your group in Services"));
+ this->SetDesc(_("Set the display of your group in services"));
this->SetSyntax(_("\037new-display\037"));
}
@@ -469,7 +469,7 @@ public:
this->SendSyntax(source);
source.Reply(" ");
source.Reply(_("Changes the display used to refer to your nickname group in\n"
- "Services. The new display MUST be a nick of your group."));
+ "services. The new display MUST be a nick of your group."));
return true;
}
};
@@ -493,7 +493,7 @@ public:
this->SendSyntax(source);
source.Reply(" ");
source.Reply(_("Changes the display used to refer to the nickname group in\n"
- "Services. The new display MUST be a nick of the group."));
+ "services. The new display MUST be a nick of the group."));
return true;
}
};