]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_sajoin.cpp
Some more text fixes and improvements (#1618).
[user/henk/code/inspircd.git] / src / modules / m_sajoin.cpp
index d01339133eeb02d3d90a653a8817cfc573b30640..39ebb28cc2799f13956496e4ec9bac58f63069cb 100644 (file)
@@ -96,7 +96,7 @@ class CommandSajoin : public Command
                }
                else
                {
-                       user->WriteNotice("*** No such nickname "+nickname);
+                       user->WriteNotice("*** No such nickname: '" + nickname + "'");
                        return CMD_FAILURE;
                }
        }
@@ -118,7 +118,7 @@ class ModuleSajoin : public Module
 
        Version GetVersion() CXX11_OVERRIDE
        {
-               return Version("Provides command SAJOIN to allow opers to force-join users to channels", VF_OPTCOMMON | VF_VENDOR);
+               return Version("Provides the SAJOIN command, allows opers to force-join users to channels", VF_OPTCOMMON | VF_VENDOR);
        }
 };