Merge pull request #145 from SaberUK/insp20-typo-fixes

[2.0] Typo fixes.
This commit is contained in:
Robin Burchell 2012-05-27 06:07:55 -07:00
commit 5d172e0dfc
6 changed files with 10 additions and 10 deletions

View File

@ -48,7 +48,7 @@ CmdResult CommandServer::Handle (const std::vector<std::string>&, User *user)
}
else
{
user->WriteNumeric(ERR_NOTREGISTERED, "%s :You may not register as a server (servers have seperate ports from clients, change your config)",name.c_str());
user->WriteNumeric(ERR_NOTREGISTERED, "%s :You may not register as a server (servers have separate ports from clients, change your config)",name.c_str());
}
return CMD_FAILURE;
}

View File

@ -60,7 +60,7 @@ class ModuleDelayJoin : public Module
ModResult OnRawMode(User* user, Channel* channel, const char mode, const std::string &param, bool adding, int pcnt);
};
/* $ModDesc: Allows for delay-join channels (+D) where users dont appear to join until they speak */
/* $ModDesc: Allows for delay-join channels (+D) where users don't appear to join until they speak */
ModeAction DelayJoinMode::OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding)
{
@ -88,7 +88,7 @@ ModuleDelayJoin::~ModuleDelayJoin()
Version ModuleDelayJoin::GetVersion()
{
return Version("Allows for delay-join channels (+D) where users dont appear to join until they speak", VF_VENDOR);
return Version("Allows for delay-join channels (+D) where users don't appear to join until they speak", VF_VENDOR);
}
void ModuleDelayJoin::OnNamesListItem(User* issuer, Membership* memb, std::string &prefixes, std::string &nick)

View File

@ -80,14 +80,14 @@ CmdResult CommandFJoin::Handle(const std::vector<std::string>& params, User *src
if (created)
{
chan = new Channel(channel, TS);
ServerInstance->SNO->WriteToSnoMask('d', "Creation FJOIN recieved for %s, timestamp: %lu", chan->name.c_str(), (unsigned long)TS);
ServerInstance->SNO->WriteToSnoMask('d', "Creation FJOIN received for %s, timestamp: %lu", chan->name.c_str(), (unsigned long)TS);
}
else
{
time_t ourTS = chan->age;
if (TS != ourTS)
ServerInstance->SNO->WriteToSnoMask('d', "Merge FJOIN recieved for %s, ourTS: %lu, TS: %lu, difference: %lu",
ServerInstance->SNO->WriteToSnoMask('d', "Merge FJOIN received for %s, ourTS: %lu, TS: %lu, difference: %lu",
chan->name.c_str(), (unsigned long)ourTS, (unsigned long)TS, (unsigned long)(ourTS - TS));
/* If our TS is less than theirs, we dont accept their modes */
if (ourTS < TS)

View File

@ -21,7 +21,7 @@
#include "sql.h"
#include "hash.h"
/* $ModDesc: Allow/Deny connections based upon an arbitary SQL table */
/* $ModDesc: Allow/Deny connections based upon an arbitrary SQL table */
enum AuthState {
AUTH_STATE_NONE = 0,
@ -162,7 +162,7 @@ class ModuleSQLAuth : public Module
Version GetVersion()
{
return Version("Allow/Deny connections based upon an arbitary SQL table", VF_VENDOR);
return Version("Allow/Deny connections based upon an arbitrary SQL table", VF_VENDOR);
}
};

View File

@ -25,7 +25,7 @@
#include "inspircd.h"
/* $ModDesc: Provides the SWHOIS command which allows setting of arbitary WHOIS lines */
/* $ModDesc: Provides the SWHOIS command which allows setting of arbitrary WHOIS lines */
/** Handle /SWHOIS
*/
@ -133,7 +133,7 @@ class ModuleSWhois : public Module
Version GetVersion()
{
return Version("Provides the SWHOIS command which allows setting of arbitary WHOIS lines", VF_OPTCOMMON | VF_VENDOR);
return Version("Provides the SWHOIS command which allows setting of arbitrary WHOIS lines", VF_OPTCOMMON | VF_VENDOR);
}
};

View File

@ -246,7 +246,7 @@ class ModuleXLineDB : public Module
virtual Version GetVersion()
{
return Version("Keeps a dynamic log of all XLines created, and stores them in a seperate conf file (xline.db).", VF_VENDOR);
return Version("Keeps a dynamic log of all XLines created, and stores them in a separate conf file (xline.db).", VF_VENDOR);
}
};