diff options
author | Josh Soref <2119212+jsoref@users.noreply.github.com> | 2021-06-17 10:02:30 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-17 15:02:30 +0100 |
commit | fd88b756fc20dedea15a8a08c21e8f7af6612e4e (patch) | |
tree | 81faaface4f605d329848b0c9b7dae8c7dad5b7f /include | |
parent | 8d1bc95faf095984dcc39b4c51de5bc5051b9a12 (diff) |
Fix various spelling issues (#274).
Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>.
Diffstat (limited to 'include')
-rw-r--r-- | include/account.h | 12 | ||||
-rw-r--r-- | include/anope.h | 22 | ||||
-rw-r--r-- | include/channels.h | 4 | ||||
-rw-r--r-- | include/commands.h | 8 | ||||
-rw-r--r-- | include/config.h | 2 | ||||
-rw-r--r-- | include/hashcomp.h | 2 | ||||
-rw-r--r-- | include/language.h | 2 | ||||
-rw-r--r-- | include/logger.h | 4 | ||||
-rw-r--r-- | include/modes.h | 4 | ||||
-rw-r--r-- | include/modules.h | 16 | ||||
-rw-r--r-- | include/modules/httpd.h | 2 | ||||
-rw-r--r-- | include/modules/ns_cert.h | 2 | ||||
-rw-r--r-- | include/modules/pseudoclients/memoserv.h | 2 | ||||
-rw-r--r-- | include/opertype.h | 2 | ||||
-rw-r--r-- | include/protocol.h | 4 | ||||
-rw-r--r-- | include/regchannel.h | 4 | ||||
-rw-r--r-- | include/serialize.h | 6 | ||||
-rw-r--r-- | include/servers.h | 2 | ||||
-rw-r--r-- | include/users.h | 6 |
19 files changed, 53 insertions, 53 deletions
diff --git a/include/account.h b/include/account.h index d4b255c29..1a6809d90 100644 --- a/include/account.h +++ b/include/account.h @@ -61,7 +61,7 @@ class CoreExport NickAlias : public Serializable, public Extensible * @param ident The ident * @param host The host * @param creator Who created the vhost - * @param time When the vhost was craated + * @param time When the vhost was created */ void SetVhost(const Anope::string &ident, const Anope::string &host, const Anope::string &creator, time_t created = Anope::CurTime); @@ -130,7 +130,7 @@ class CoreExport NickCore : public Serializable, public Extensible */ Serialize::Checker<std::vector<NickAlias *> > aliases; - /* Set if this user is a services operattor. o->ot must exist. */ + /* Set if this user is a services operator. o->ot must exist. */ Oper *o; /* Unsaved data */ @@ -234,7 +234,7 @@ class CoreExport NickCore : public Serializable, public Extensible class CoreExport IdentifyRequest { /* Owner of this request, used to cleanup requests if a module is unloaded - * while a reqyest us pending */ + * while a request us pending */ Module *owner; Anope::string account; Anope::string password; @@ -262,17 +262,17 @@ class CoreExport IdentifyRequest * for the request to complete. Multiple modules may hold a request at any time, * but the request is not complete until every module has released it. If you do not * require holding this (eg, your password check is done in this thread and immediately) - * then you don't need to hold the request before Successing it. + * then you don't need to hold the request before calling `Success()`. * @param m The module holding this request */ void Hold(Module *m); /** Releases a held request - * @param m The module releaseing the hold + * @param m The module releasing the hold */ void Release(Module *m); - /** Called by modules when this IdentifyRequest has successeded successfully. + /** Called by modules when this IdentifyRequest has succeeded. * If this request is behind held it must still be Released after calling this. * @param m The module confirming authentication */ diff --git a/include/anope.h b/include/anope.h index 4f24a5681..fe2b96a42 100644 --- a/include/anope.h +++ b/include/anope.h @@ -362,7 +362,7 @@ namespace Anope */ extern CoreExport int Debug; - /** Other comand line options. + /** Other command line options. */ extern CoreExport bool ReadOnly, NoFork, NoThird, NoExpire, ProtocolDebug; @@ -403,7 +403,7 @@ namespace Anope /** Used to "fork" the process and go into the background during initial startup * while we are AtTerm(). The actual fork is not done here, but earlier, and this - * simply notifys the parent via kill() to exit(). + * simply notifies the parent via kill() to exit(). */ extern void Fork(); @@ -413,7 +413,7 @@ namespace Anope /** One of the first functions called, does general initialization such as reading * command line args, loading the configuration, doing the initial fork() if necessary, - * initializating language support, loading modules, and loading databases. + * initializing language support, loading modules, and loading databases. * @throws CoreException if something bad went wrong */ extern void Init(int ac, char **av); @@ -574,7 +574,7 @@ class CoreExport sepstream public: /** Create a sepstream and fill it with the provided data */ - sepstream(const Anope::string &source, char seperator, bool allowempty = false); + sepstream(const Anope::string &source, char separator, bool allowempty = false); /** Fetch the next token from the stream * @param token The next token from the stream is placed here @@ -584,7 +584,7 @@ class CoreExport sepstream /** Gets token number 'num' from the stream * @param token The token is placed here - * @param num The token number to featch + * @param num The token number to fetch * @return True if the token was able to be fetched */ bool GetToken(Anope::string &token, int num); @@ -602,7 +602,7 @@ class CoreExport sepstream /** Gets token number 'num' from the stream and all remaining tokens. * @param token The token is placed here - * @param num The token number to featch + * @param num The token number to fetch * @return True if the token was able to be fetched */ bool GetTokenRemainder(Anope::string &token, int num); @@ -628,7 +628,7 @@ class CoreExport sepstream class commasepstream : public sepstream { public: - /** Initialize with comma seperator + /** Initialize with comma separator */ commasepstream(const Anope::string &source, bool allowempty = false) : sepstream(source, ',', allowempty) { } }; @@ -638,7 +638,7 @@ class commasepstream : public sepstream class spacesepstream : public sepstream { public: - /** Initialize with space seperator + /** Initialize with space separator */ spacesepstream(const Anope::string &source) : sepstream(source, ' ') { } }; @@ -659,7 +659,7 @@ class CoreException : public std::exception */ Anope::string source; public: - /** Default constructor, just uses the error mesage 'Core threw an exception'. + /** Default constructor, just uses the error message 'Core threw an exception'. */ CoreException() : err("Core threw an exception"), source("The core") { } /** This constructor can be used to specify an error message before throwing. @@ -691,7 +691,7 @@ class CoreException : public std::exception class ModuleException : public CoreException { public: - /** Default constructor, just uses the error mesage 'Module threw an exception'. + /** Default constructor, just uses the error message 'Module threw an exception'. */ ModuleException() : CoreException("Module threw an exception", "A Module") { } @@ -766,7 +766,7 @@ template<typename T> inline T convertTo(const Anope::string &s, bool failIfLefto } /** Casts to be used instead of dynamic_cast, this uses dynamic_cast - * for debug builds and static_cast on releass builds + * for debug builds and static_cast on release builds * to speed up the program because dynamic_cast relies on RTTI. */ #ifdef DEBUG_BUILD diff --git a/include/channels.h b/include/channels.h index 2d9b848d8..838dd15c0 100644 --- a/include/channels.h +++ b/include/channels.h @@ -232,7 +232,7 @@ class CoreExport Channel : public Base, public Extensible * @param bi The sender, can be NULL for the service bot for this channel * @param u The user being kicked * @param reason The reason for the kick - * @return true if the kick was scucessful, false if a module blocked the kick + * @return true if the kick was successful, false if a module blocked the kick */ bool Kick(BotInfo *bi, User *u, const char *reason = NULL, ...); @@ -249,7 +249,7 @@ class CoreExport Channel : public Base, public Extensible /** Get a string of the modes set on this channel * @param complete Include mode parameters - * @param plus If set to false (with complete), mode parameters will not be given for modes requring no parameters to be unset + * @param plus If set to false (with complete), mode parameters will not be given for modes requiring no parameters to be unset * @return A mode string */ Anope::string GetModes(bool complete, bool plus); diff --git a/include/commands.h b/include/commands.h index 5f41d68e9..64335720f 100644 --- a/include/commands.h +++ b/include/commands.h @@ -40,7 +40,7 @@ struct CommandInfo bool prepend_channel; }; -/* Where the replies from commands go to. User inheits from this and is the normal +/* Where the replies from commands go to. User inherits from this and is the normal * source of a CommandReply */ struct CoreExport CommandReply @@ -101,7 +101,7 @@ class CoreExport Command : public Service bool require_user; public: - /* Maximum paramaters accepted by this command */ + /* Maximum parameters accepted by this command */ size_t max_params; /* Minimum parameters required to use this command */ size_t min_params; @@ -148,7 +148,7 @@ class CoreExport Command : public Service */ virtual void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) = 0; - /** Called when HELP is requsted for the client this command is on. + /** Called when HELP is requested for the client this command is on. * @param source The source */ virtual void OnServHelp(CommandSource &source); @@ -178,7 +178,7 @@ class CoreExport Command : public Service * Note that if the same command exists multiple places this will return the first one encountered * @param command_service The command service to lookup, eg, nickserv/register * @param bot If found, is set to the bot the command is on, eg NickServ - * @param name If found, is set to the comand name, eg REGISTER + * @param name If found, is set to the command name, eg REGISTER * @return true if the given command service exists */ static bool FindCommandFromService(const Anope::string &command_service, BotInfo* &bi, Anope::string &name); diff --git a/include/config.h b/include/config.h index e02cf0157..d8ef07695 100644 --- a/include/config.h +++ b/include/config.h @@ -165,7 +165,7 @@ namespace Configuration class ConfigException : public CoreException { public: - /** Default constructor, just uses the error mesage 'Config threw an exception'. + /** Default constructor, just uses the error message 'Config threw an exception'. */ ConfigException() : CoreException("Config threw an exception", "Config Parser") { } /** This constructor can be used to specify an error message before throwing. diff --git a/include/hashcomp.h b/include/hashcomp.h index ed1937842..983115620 100644 --- a/include/hashcomp.h +++ b/include/hashcomp.h @@ -26,7 +26,7 @@ namespace Anope { class string; - /* Casemap in use by Anope. ci::string's comparation functions use this (and thus Anope::string) */ + /* Casemap in use by Anope. ci::string's comparison functions use this (and thus Anope::string) */ extern std::locale casemap; extern void CaseMapRebuild(); diff --git a/include/language.h b/include/language.h index dfaf7140e..49617a4c5 100644 --- a/include/language.h +++ b/include/language.h @@ -40,7 +40,7 @@ namespace Language extern CoreExport const char *Translate(const char *string); /** Translates a string to the language of the given user. - * @param u The user to transate the string for + * @param u The user to translate the string for * @param string A string to translate * @return The translated string if found, else the original string. */ diff --git a/include/logger.h b/include/logger.h index 41f715eb3..51868d917 100644 --- a/include/logger.h +++ b/include/logger.h @@ -17,9 +17,9 @@ enum LogType { - /* Used whenever an administrator uses an administrative comand */ + /* Used whenever an administrator uses an administrative command */ LOG_ADMIN, - /* Used whenever an administrator overides something, such as adding + /* Used whenever an administrator overrides something, such as adding * access to a channel where they don't have permission to. */ LOG_OVERRIDE, diff --git a/include/modes.h b/include/modes.h index ed55f5911..04fc97791 100644 --- a/include/modes.h +++ b/include/modes.h @@ -96,7 +96,7 @@ class CoreExport UserModeParam : public UserMode class CoreExport ChannelMode : public Mode { public: - /* channel modes that can posssibly unwrap this mode */ + /* channel modes that can possibly unwrap this mode */ std::vector<ChannelMode *> listeners; /** constructor @@ -400,7 +400,7 @@ class CoreExport Entry /** Constructor * @param mode What mode this host is for, can be empty for unknown/no mode - * @param host A full or poartial nick!ident@host/cidr#real name mask + * @param host A full or partial nick!ident@host/cidr#real name mask */ Entry(const Anope::string &mode, const Anope::string &host); diff --git a/include/modules.h b/include/modules.h index ce1c2baa2..034a98930 100644 --- a/include/modules.h +++ b/include/modules.h @@ -507,7 +507,7 @@ class CoreExport Module : public Extensible */ virtual void OnChanExpire(ChannelInfo *ci) { throw NotImplementedException(); } - /** Called before Anope connecs to its uplink + /** Called before Anope connects to its uplink */ virtual void OnPreServerConnect() { throw NotImplementedException(); } @@ -555,7 +555,7 @@ class CoreExport Module : public Extensible /** Called before an exception is deleted * @param source The source deleting it - * @param ex The exceotion + * @param ex The exception */ virtual void OnExceptionDel(CommandSource &source, Exception *ex) { throw NotImplementedException(); } @@ -776,7 +776,7 @@ class CoreExport Module : public Extensible */ virtual void OnNickSuspend(NickAlias *na) { throw NotImplementedException(); } - /** Called when a nick is unsuspneded + /** Called when a nick is unsuspended * @param na The nick alias */ virtual void OnNickUnsuspended(NickAlias *na) { throw NotImplementedException(); } @@ -939,12 +939,12 @@ class CoreExport Module : public Extensible */ virtual void OnUserModeUnset(const MessageSource &setter, User *u, const Anope::string &mname) { throw NotImplementedException(); } - /** Called when a channel mode is introducted into Anope + /** Called when a channel mode is introduced into Anope * @param cm The mode */ virtual void OnChannelModeAdd(ChannelMode *cm) { throw NotImplementedException(); } - /** Called when a user mode is introducted into Anope + /** Called when a user mode is introduced into Anope * @param um The mode */ virtual void OnUserModeAdd(UserMode *um) { throw NotImplementedException(); } @@ -1080,7 +1080,7 @@ class CoreExport Module : public Extensible */ virtual EventReturn OnMessage(MessageSource &source, Anope::string &command, std::vector<Anope::string> ¶m) { throw NotImplementedException(); } - /** Called to determine if a chnanel mode can be set by a user + /** Called to determine if a channel mode can be set by a user * @param u The user * @param cm The mode */ @@ -1093,7 +1093,7 @@ class CoreExport Module : public Extensible */ virtual void OnExpireTick() { throw NotImplementedException(); } - /** Called when a nick is validated. That is, to determine if a user is permissted + /** Called when a nick is validated. That is, to determine if a user is permitted * to be on the given nick. * @param u The user * @param na The nick they are on @@ -1177,7 +1177,7 @@ class CoreExport ModuleManager /** Checks whether this version of Anope is at least major.minor.patch.build * Throws a ModuleException if not * @param major The major version - * @param minor The minor vesion + * @param minor The minor version * @param patch The patch version */ static void RequireVersion(int major, int minor, int patch); diff --git a/include/modules/httpd.h b/include/modules/httpd.h index 43f6a279c..6431534e3 100644 --- a/include/modules/httpd.h +++ b/include/modules/httpd.h @@ -80,7 +80,7 @@ struct HTTPReply } }; -/* A message from soneone */ +/* A message from someone */ struct HTTPMessage { std::map<Anope::string, Anope::string> headers; diff --git a/include/modules/ns_cert.h b/include/modules/ns_cert.h index 0b06d8f5e..a84276b52 100644 --- a/include/modules/ns_cert.h +++ b/include/modules/ns_cert.h @@ -26,7 +26,7 @@ struct NSCertList /** Get an entry from the nick's cert list by index * - * @param entry Index in the certificaate list vector to retrieve + * @param entry Index in the certificate list vector to retrieve * @return The fingerprint entry of the given index if within bounds, an empty string if the vector is empty or the index is out of bounds * * Retrieves an entry from the certificate list corresponding to the given index. diff --git a/include/modules/pseudoclients/memoserv.h b/include/modules/pseudoclients/memoserv.h index dcfdf8864..e64b2104a 100644 --- a/include/modules/pseudoclients/memoserv.h +++ b/include/modules/pseudoclients/memoserv.h @@ -25,7 +25,7 @@ class MemoServService : public Service } /** Sends a memo. - * @param source The source of the memo, can be anythin. + * @param source The source of the memo, can be anything. * @param target The target of the memo, nick or channel. * @param message Memo text * @param force true to force the memo, restrictions/delays etc are not checked diff --git a/include/opertype.h b/include/opertype.h index 632706027..58f6049ab 100644 --- a/include/opertype.h +++ b/include/opertype.h @@ -67,7 +67,7 @@ class CoreExport OperType */ std::set<OperType *> inheritances; public: - /** Modes to set when someone identifys using this opertype + /** Modes to set when someone identifies using this opertype */ Anope::string modes; diff --git a/include/protocol.h b/include/protocol.h index a9fd2d763..45aaa70d8 100644 --- a/include/protocol.h +++ b/include/protocol.h @@ -17,7 +17,7 @@ #include "service.h" #include "modes.h" -/* Encapsultes the IRCd protocol we are speaking. */ +/* Encapsulates the IRCd protocol we are speaking. */ class CoreExport IRCDProto : public Service { Anope::string proto_name; @@ -55,7 +55,7 @@ class CoreExport IRCDProto : public Service bool CanSNLine; /* Can we ban specific nicknames from being used? */ bool CanSQLine; - /* Can we ban sepcific channel names from being used? */ + /* Can we ban specific channel names from being used? */ bool CanSQLineChannel; /* Can we ban by IP? */ bool CanSZLine; diff --git a/include/regchannel.h b/include/regchannel.h index ce56324c7..d0f0bf02f 100644 --- a/include/regchannel.h +++ b/include/regchannel.h @@ -97,7 +97,7 @@ class CoreExport ChannelInfo : public Serializable, public Extensible void Serialize(Serialize::Data &data) const anope_override; static Serializable* Unserialize(Serializable *obj, Serialize::Data &); - /** Change the founder of the channek + /** Change the founder of the channel * @params nc The new founder */ void SetFounder(NickCore *nc); @@ -135,7 +135,7 @@ class CoreExport ChannelInfo : public Serializable, public Extensible AccessGroup AccessFor(const User *u, bool updateLastUsed = true); AccessGroup AccessFor(const NickCore *nc, bool updateLastUsed = true); - /** Get the size of the accss vector for this channel + /** Get the size of the access vector for this channel * @return The access vector size */ unsigned GetAccessCount() const; diff --git a/include/serialize.h b/include/serialize.h index 41ab41d9c..406b9698f 100644 --- a/include/serialize.h +++ b/include/serialize.h @@ -46,7 +46,7 @@ namespace Serialize template<typename T> class Reference; } -/** A serialziable object. Serializable objects can be serialized into +/** A serializable object. Serializable objects can be serialized into * abstract data types (Serialize::Data), and then reconstructed or * updated later at any time. */ @@ -105,7 +105,7 @@ class CoreExport Serializable : public virtual Base }; /* A serializable type. There should be one of these classes for each type - * of class that inherits from Serialiable. Used for unserializing objects + * of class that inherits from Serializable. Used for unserializing objects * of this type, as it requires a function pointer to a static member function. */ class CoreExport Serialize::Type : public Base @@ -123,7 +123,7 @@ class CoreExport Serialize::Type : public Base */ Module *owner; - /* The timesatmp for this type. All objects of this type are as up to date as + /* The timestamp for this type. All objects of this type are as up to date as * this timestamp. if curtime == timestamp then we have the most up to date * version of every object of this type. */ diff --git a/include/servers.h b/include/servers.h index 81abacd35..f88f66187 100644 --- a/include/servers.h +++ b/include/servers.h @@ -170,7 +170,7 @@ class CoreExport Server : public Extensible */ bool IsQuitting() const; - /** Send a message to alll users on this server + /** Send a message to all users on this server * @param source The source of the message * @param message The message */ diff --git a/include/users.h b/include/users.h index 72f786c57..f7756e7c2 100644 --- a/include/users.h +++ b/include/users.h @@ -46,7 +46,7 @@ class CoreExport User : public virtual Base, public Extensible, public CommandRe bool on_access; /* Map of user modes and the params this user has (if any) */ ModeList modes; - /* NickCore account the user is currently loggged in as, if they are logged in */ + /* NickCore account the user is currently logged in as, if they are logged in */ Serialize::Reference<NickCore> nc; /* # of invalid password attempts */ @@ -161,13 +161,13 @@ class CoreExport User : public virtual Base, public Extensible, public CommandRe /** Update the real ident (username) of a user record. * @param ident The new ident to give this user. - * NOTE: Where possible, you should use the Get/SetVIdent() equivilants. + * NOTE: Where possible, you should use the Get/SetVIdent() equivalents. */ void SetIdent(const Anope::string &ident); /** Get the real ident (username) of this user. * @return The displayed ident of this user. - * NOTE: Where possible, you should use the Get/SetVIdent() equivilants. + * NOTE: Where possible, you should use the Get/SetVIdent() equivalents. */ const Anope::string &GetIdent() const; |