summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2019-04-04 14:36:45 +0100
committerPeter Powell <petpow@saberuk.com>2019-04-04 14:36:45 +0100
commitb00451a85cfc5d26bbfbd7bb903071f3bba91c9c (patch)
treea5205806ee48c7855845cfc4bb9f33487bf3e140
parent656ce184b91f05604d9db599d6230c19a734389c (diff)
Fix various typos.
-rw-r--r--docs/conf/modules.conf.example2
-rw-r--r--docs/conf/services/anope.conf.example2
-rw-r--r--include/modules.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/docs/conf/modules.conf.example b/docs/conf/modules.conf.example
index 945027842..e5b8af9a5 100644
--- a/docs/conf/modules.conf.example
+++ b/docs/conf/modules.conf.example
@@ -734,7 +734,7 @@
# If 'bypasscharsuline' is empty, then 'bypasschars' will
# match for both regular and U-lined users.
# enableprivdeaf - Whether to enable usermode +D (privdeaf).
-# privdeafuline - Whether U-lined users bypass usermode +D (privdeaf).A
+# privdeafuline - Whether U-lined users bypass usermode +D (privdeaf).
#
#<deaf bypasschars="" bypasscharsuline="!" enableprivdeaf="no" privdeafuline="yes">
diff --git a/docs/conf/services/anope.conf.example b/docs/conf/services/anope.conf.example
index b753874be..5c8f859ff 100644
--- a/docs/conf/services/anope.conf.example
+++ b/docs/conf/services/anope.conf.example
@@ -6,4 +6,4 @@
# /GLOBAL <message>
# Sends a global notice.
-<alias text="GLOBAL" format="*" replace="ยง $requirement :GLOBAL $2-" requires="Global" uline="yes" operonly="yes">
+<alias text="GLOBAL" format="*" replace="SQUERY $requirement :GLOBAL $2-" requires="Global" uline="yes" operonly="yes">
diff --git a/include/modules.h b/include/modules.h
index 3e9df35aa..ae438128d 100644
--- a/include/modules.h
+++ b/include/modules.h
@@ -723,7 +723,7 @@ class CoreExport Module : public classbase, public usecountbase
virtual void OnPostCommand(Command* command, const CommandBase::Params& parameters, LocalUser* user, CmdResult result, bool loop);
/** Called after a user object is initialised and added to the user list.
- * When this is called the user has not their I/O hooks checked or had their initial
+ * When this is called the user has not had their I/O hooks checked or had their initial
* connect class assigned and may not yet have a serialiser. You probably want to use
* the OnUserPostInit or OnUserSetIP hooks instead of this one.
* @param user The connecting user.