diff options
author | Sadie Powell <sadie@witchery.services> | 2023-12-17 19:32:45 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2023-12-17 19:32:45 +0000 |
commit | b84b1d8166b07b80429c6830e0151e0c871c2cfc (patch) | |
tree | c73bdb9d0f345705f098fcc0c0978458b2ef1b48 /include | |
parent | 8e2fa4acdbc24d0a629b737d5dd42a31a543016d (diff) |
Misc grammar fixes.
Diffstat (limited to 'include')
-rw-r--r-- | include/anope.h | 2 | ||||
-rw-r--r-- | include/modes.h | 2 | ||||
-rw-r--r-- | include/modules.h | 3 |
3 files changed, 3 insertions, 4 deletions
diff --git a/include/anope.h b/include/anope.h index ed894c4ce..056cc5f7e 100644 --- a/include/anope.h +++ b/include/anope.h @@ -572,7 +572,7 @@ class CoreExport sepstream /** Original string. */ Anope::string tokens; - /** Seperator value + /** Separator value */ char sep; /** Current string position diff --git a/include/modes.h b/include/modes.h index 134fb04b2..32a2e1f9b 100644 --- a/include/modes.h +++ b/include/modes.h @@ -160,7 +160,7 @@ class CoreExport ChannelModeList : public ChannelMode virtual void OnDel(Channel *chan, const Anope::string &mask) { } }; -/** This is a mode with a paramater, eg +k/l. These modes should use/inherit from this +/** This is a mode with a parameter, eg +k/l. These modes should use/inherit from this */ class CoreExport ChannelModeParam : public ChannelMode { diff --git a/include/modules.h b/include/modules.h index 659804b1d..0b5e4903e 100644 --- a/include/modules.h +++ b/include/modules.h @@ -402,7 +402,6 @@ class CoreExport Module : public Extensible virtual EventReturn OnLoadDatabase() { throw NotImplementedException(); } /** Called when anope needs to check passwords against encryption - * see src/encrypt.c for detailed informations */ virtual EventReturn OnEncrypt(const Anope::string &src, Anope::string &dest) { throw NotImplementedException(); } virtual EventReturn OnDecrypt(const Anope::string &hashm, const Anope::string &src, Anope::string &dest) { throw NotImplementedException(); } @@ -1066,7 +1065,7 @@ class CoreExport Module : public Extensible /** Called when a nickserv/set command is used. * @param source The source of the command * @param cmd The command - * @param nc The nickcore being modifed + * @param nc The nickcore being modified * @param setting The setting passed to the command. Probably ON/OFF. * @return EVENT_STOP to halt immediately */ |