summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/command.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/command.cc')
-rw-r--r--crawl-ref/source/command.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/command.cc b/crawl-ref/source/command.cc
index bb0903cc9d..03523ec43f 100644
--- a/crawl-ref/source/command.cc
+++ b/crawl-ref/source/command.cc
@@ -1655,8 +1655,8 @@ static bool _find_description(bool &again, std::string& error_inout)
else
{
error_inout = "No matching ";
- error_inout += type;
- error_inout += "s.";
+ error_inout += pluralise(type);
+ error_inout += ".";
}
return (false);
}