diff options
author | Sadie Powell <sadie@witchery.services> | 2021-08-01 18:53:24 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2021-08-01 18:53:24 +0100 |
commit | 561b205c4a3a125c12a7926ef18fa1eb822c387c (patch) | |
tree | c763ddefe765e23ec0ff189e24d55f634b52b954 /include/modules.h | |
parent | 376053e0acae2a37a8f5c77c8de25ebf8a8395a9 (diff) | |
parent | 91321bdf682eb5b512373bb56c722f943cbc8183 (diff) |
Merge branch '2.0' into 2.1.
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); |