summaryrefslogtreecommitdiff
path: root/src/modules/m_abbreviation.cpp
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2015-01-21 19:08:30 +0100
committerAttila Molnar <attilamolnar@hush.com>2015-01-21 19:08:30 +0100
commitf8185feff704c19326dc7af767a875b22a8f85e0 (patch)
tree984828a3f063a88064aedaf2b340a2de159c777a /src/modules/m_abbreviation.cpp
parent22d6da594d49b6059773b1ab16e990a16dee1707 (diff)
m_abbreviation Fix typo in numeric text
Diffstat (limited to 'src/modules/m_abbreviation.cpp')
-rw-r--r--src/modules/m_abbreviation.cpp2
1 files changed, 1 insertions, 1 deletions
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;
}