]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
m_abbreviation Fix typo in numeric text
authorAttila Molnar <attilamolnar@hush.com>
Wed, 21 Jan 2015 18:08:30 +0000 (19:08 +0100)
committerAttila Molnar <attilamolnar@hush.com>
Wed, 21 Jan 2015 18:08:30 +0000 (19:08 +0100)
src/modules/m_abbreviation.cpp

index a744f55f66a235d1dd657f01cd9a02e1bade069d..1e8f7117669083465047b6094584acb5233e5628 100644 (file)
@@ -79,7 +79,7 @@ class ModuleAbbreviation : public Module
                /* Ambiguous command, list the matches */
                if (!matchlist.empty())
                {
-                       user->WriteNumeric(420, "%s :Ambiguous abbreviation, posssible matches: %s%s", user->nick.c_str(), foundcommand.c_str(), matchlist.c_str());
+                       user->WriteNumeric(420, "%s :Ambiguous abbreviation, possible matches: %s%s", user->nick.c_str(), foundcommand.c_str(), matchlist.c_str());
                        return MOD_RES_DENY;
                }