aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_tline.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2022-01-25 13:59:42 +0000
committerGravatar Sadie Powell2022-01-25 14:02:36 +0000
commitd79147e7afe2eca34780c607f78b11f8b3dd017d (patch)
treea3f9a145dd53f9c1c268ac9b521ac907b802eab0 /src/modules/m_tline.cpp
parentFix a few Doxygen comment errors. (diff)
downloadinspircd++-d79147e7afe2eca34780c607f78b11f8b3dd017d.tar.gz
inspircd++-d79147e7afe2eca34780c607f78b11f8b3dd017d.tar.bz2
inspircd++-d79147e7afe2eca34780c607f78b11f8b3dd017d.zip
Abolish the infernal space before accessibility keywords.
Diffstat (limited to 'src/modules/m_tline.cpp')
-rw-r--r--src/modules/m_tline.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_tline.cpp b/src/modules/m_tline.cpp
index d641cc9b6..744de774a 100644
--- a/src/modules/m_tline.cpp
+++ b/src/modules/m_tline.cpp
@@ -28,7 +28,7 @@
class CommandTline final
: public Command
{
- public:
+public:
CommandTline(Module* Creator) : Command(Creator,"TLINE", 1)
{
access_needed = CmdAccess::OPERATOR;
@@ -74,10 +74,10 @@ class CommandTline final
class ModuleTLine final
: public Module
{
- private:
+private:
CommandTline cmd;
- public:
+public:
ModuleTLine()
: Module(VF_VENDOR, "Adds the /TLINE command which allows server operators to determine how many users would be affected by an X-line on a specified pattern.")
, cmd(this)