diff options
Diffstat (limited to 'include/modules.h')
-rw-r--r-- | include/modules.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/include/modules.h b/include/modules.h index 5c96026b2..c3379bc6d 100644 --- a/include/modules.h +++ b/include/modules.h @@ -506,7 +506,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(); } @@ -554,7 +554,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(); } @@ -775,7 +775,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(); } @@ -938,12 +938,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(); } @@ -1079,7 +1079,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 */ @@ -1092,7 +1092,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 @@ -1176,7 +1176,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); |