diff options
-rw-r--r-- | docs/conf/modules.conf.example | 16 | ||||
-rw-r--r-- | src/modules/m_ircv3_capnotify.cpp | 2 | ||||
-rw-r--r-- | src/modules/m_ircv3_chghost.cpp | 2 | ||||
-rw-r--r-- | src/modules/m_ircv3_echomessage.cpp | 2 | ||||
-rw-r--r-- | src/modules/m_ircv3_invitenotify.cpp | 2 |
5 files changed, 12 insertions, 12 deletions
diff --git a/docs/conf/modules.conf.example b/docs/conf/modules.conf.example index 9e023e9ed..07d1ccba2 100644 --- a/docs/conf/modules.conf.example +++ b/docs/conf/modules.conf.example @@ -1037,8 +1037,8 @@ #<ircv3 accountnotify="on" awaynotify="on" extendedjoin="on"> #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-# -# IRCv3 cap-notify module: Provides the cap-notify IRCv3.2 extension. -# Required for IRCv3.2 conformance. +# IRCv3 cap-notify module: Provides the cap-notify IRCv3 extension. +# Required for IRCv3 conformance. #<module name="ircv3_capnotify"> #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-# @@ -1053,12 +1053,12 @@ #<module name="ircv3_batch"> #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-# -# IRCv3 cap-notify module: Provides the cap-notify IRCv3.2 extension. -# Required for IRCv3.2 conformance. +# IRCv3 cap-notify module: Provides the cap-notify IRCv3 extension. +# Required for IRCv3 conformance. #<module name="ircv3_capnotify"> #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-# -# IRCv3 chghost module: Provides the chghost IRCv3.2 extension which +# IRCv3 chghost module: Provides the chghost IRCv3 extension which # allows capable clients to learn when the host/ident of another user # changes without cycling the user. This module is compatible with the # hostcycle module. If both are loaded, clients supporting the chghost @@ -1066,14 +1066,14 @@ #<module name="ircv3_chghost"> #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-# -# IRCv3 echo-message module: Provides the echo-message IRCv3.2 +# IRCv3 echo-message module: Provides the echo-message IRCv3 # extension which allows capable clients to get an acknowledgement when # their messages are delivered and learn what modifications, if any, # were applied to them. #<module name="ircv3_echomessage"> #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-# -# IRCv3 invite-notify module: Provides the invite-notify IRCv3.2 +# IRCv3 invite-notify module: Provides the invite-notify IRCv3 # extension which notifies supporting clients when a user invites # another user into a channel. This respects <options:announceinvites>. #<module name="ircv3_invitenotify"> @@ -1084,7 +1084,7 @@ #<module name="ircv3_servertime"> #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-# -# IRCv3 Strict Transport Security module: Provides the sts IRCv3.2 +# IRCv3 Strict Transport Security module: Provides the sts IRCv3 # extension which allows clients connecting insecurely to upgrade their # connections to TLS. #<module name="ircv3_sts"> diff --git a/src/modules/m_ircv3_capnotify.cpp b/src/modules/m_ircv3_capnotify.cpp index 757b0858f..6190f15a8 100644 --- a/src/modules/m_ircv3_capnotify.cpp +++ b/src/modules/m_ircv3_capnotify.cpp @@ -178,7 +178,7 @@ class ModuleIRCv3CapNotify : public Module, public Cap::EventListener, public Re Version GetVersion() CXX11_OVERRIDE { - return Version("Provides the cap-notify IRCv3.2 extension", VF_VENDOR); + return Version("Provides the cap-notify IRCv3 extension", VF_VENDOR); } }; diff --git a/src/modules/m_ircv3_chghost.cpp b/src/modules/m_ircv3_chghost.cpp index aa53612cb..fd142803f 100644 --- a/src/modules/m_ircv3_chghost.cpp +++ b/src/modules/m_ircv3_chghost.cpp @@ -54,7 +54,7 @@ class ModuleIRCv3ChgHost : public Module Version GetVersion() CXX11_OVERRIDE { - return Version("Provides the chghost IRCv3.2 extension", VF_VENDOR); + return Version("Provides the chghost IRCv3 extension", VF_VENDOR); } }; diff --git a/src/modules/m_ircv3_echomessage.cpp b/src/modules/m_ircv3_echomessage.cpp index 702552ea7..68505a195 100644 --- a/src/modules/m_ircv3_echomessage.cpp +++ b/src/modules/m_ircv3_echomessage.cpp @@ -72,7 +72,7 @@ class ModuleIRCv3EchoMessage : public Module Version GetVersion() CXX11_OVERRIDE { - return Version("Provides the echo-message IRCv3.2 extension", VF_VENDOR); + return Version("Provides the echo-message IRCv3 extension", VF_VENDOR); } }; diff --git a/src/modules/m_ircv3_invitenotify.cpp b/src/modules/m_ircv3_invitenotify.cpp index bcb6f51d5..8bd4d5642 100644 --- a/src/modules/m_ircv3_invitenotify.cpp +++ b/src/modules/m_ircv3_invitenotify.cpp @@ -63,7 +63,7 @@ class ModuleIRCv3InviteNotify : public Module Version GetVersion() CXX11_OVERRIDE { - return Version("Provides the invite-notify IRCv3.2 extension", VF_VENDOR); + return Version("Provides the invite-notify IRCv3 extension", VF_VENDOR); } }; |