summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/religion.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index fe6c6ed0d6..66c6a844f6 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -596,13 +596,13 @@ std::string get_god_likes(god_type which_god, bool verbose)
if (likes.size() == 0)
{
- text += " %s doesn't like anything? This a bug; please report it.";
+ text += " %s doesn't like anything? This a bug; please report it.";
}
else
{
text += " likes it when you ";
text += comma_separated_line(likes.begin(), likes.end(),
- " and ", ", ");
+ ", and ", ", ");
text += ".";
}