1
0
mirror of https://github.com/anope/anope.git synced 2026-07-03 14:33:14 +02:00

Fix a ton of typos.

This commit is contained in:
Peter Powell
2015-07-08 10:55:44 +01:00
parent 4362f53cc3
commit 1666b1a8d8
48 changed files with 79 additions and 79 deletions
+3 -3
View File
@@ -949,7 +949,7 @@ struct IRCDMessageFJoin : IRCDMessage
sju.second = User::Find(buf);
if (!sju.second)
{
Log(LOG_DEBUG) << "FJOIN for nonexistant user " << buf << " on " << params[0];
Log(LOG_DEBUG) << "FJOIN for non-existent user " << buf << " on " << params[0];
continue;
}
@@ -1175,7 +1175,7 @@ struct IRCDMessageOperType : IRCDMessage
void Run(MessageSource &source, const std::vector<Anope::string> &params) anope_override
{
/* opertype is equivalent to mode +o because servers
dont do this directly */
don't do this directly */
User *u = source.GetUser();
if (!u->HasMode("OPER"))
u->SetModesInternal(source, "+o");
@@ -1371,7 +1371,7 @@ class ProtoInspIRCd12 : public Module
/* InspIRCd 1.2 doesn't set -r on nick change, remove -r here. Note that if we have to set +r later
* this will cancel out this -r, resulting in no mode changes.
*
* Do not set -r if we dont have a NickServ loaded - DP
* Do not set -r if we don't have a NickServ loaded - DP
*/
BotInfo *NickServ = Config->GetClient("NickServ");
if (NickServ)