From: Attila Molnar Date: Wed, 21 Jan 2015 18:08:30 +0000 (+0100) Subject: m_abbreviation Fix typo in numeric text X-Git-Tag: v2.0.23~78 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=f8185feff704c19326dc7af767a875b22a8f85e0;p=user%2Fhenk%2Fcode%2Finspircd.git m_abbreviation Fix typo in numeric text --- diff --git a/src/modules/m_abbreviation.cpp b/src/modules/m_abbreviation.cpp index a744f55f6..1e8f71176 100644 --- a/src/modules/m_abbreviation.cpp +++ b/src/modules/m_abbreviation.cpp @@ -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; }