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/modules.h | |
parent | 8e2fa4acdbc24d0a629b737d5dd42a31a543016d (diff) |
Misc grammar fixes.
Diffstat (limited to 'include/modules.h')
-rw-r--r-- | include/modules.h | 3 |
1 files changed, 1 insertions, 2 deletions
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 */ |