diff options
author | peavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-02-15 13:23:48 +0000 |
---|---|---|
committer | peavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-02-15 13:23:48 +0000 |
commit | 90b62dd99901b5b5d9ba620d07d004adf0cef361 (patch) | |
tree | 16caef5562dcb5b25b0fedfc0958b018239852f5 /src/modules | |
parent | e96c13479de0ae2d313e1db08d04728bdb518aff (diff) |
Fixify comments
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11114 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/m_sanick.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_sanick.cpp b/src/modules/m_sanick.cpp index 3e3e0745c..cdefe4abb 100644 --- a/src/modules/m_sanick.cpp +++ b/src/modules/m_sanick.cpp @@ -53,7 +53,7 @@ class CommandSanick : public Command } } - /* Have we hit users server yet? */ + /* Have we hit target's server yet? */ if (target && IS_LOCAL(target)) { std::string oldnick = user->nick; @@ -68,11 +68,11 @@ class CommandSanick : public Command ServerInstance->SNO->WriteToSnoMask('A', oldnick+" failed SANICK (from "+newnick+" to "+parameters[1]+")"); ServerInstance->PI->SendSNONotice("A", oldnick+" failed SANICK (from "+newnick+" to "+parameters[1]+")"); } - /* hit user and have sent our NICK out, we can now bail */ + /* Yes, hit target and we have sent our NICK out, we can now bail */ return CMD_LOCALONLY; } - /* no, route it on */ + /* No, route it on */ return CMD_SUCCESS; } }; |