summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/religion.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-12 18:53:48 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-12 18:53:48 +0000
commit6dce7d753be877ebde49c4fe52b32029faac0a82 (patch)
tree578908f611e71181a611f7aa62ddd47c74c4fa29 /crawl-ref/source/religion.cc
parent576aa0699ac663e3d1639567e39bf49b1f3c9c8b (diff)
downloadcrawl-ref-6dce7d753be877ebde49c4fe52b32029faac0a82.tar.gz
crawl-ref-6dce7d753be877ebde49c4fe52b32029faac0a82.zip
Fix use of the serial comma.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9050 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/religion.cc')
-rw-r--r--crawl-ref/source/religion.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index 71bf56135a..b3ad4908db 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -797,7 +797,7 @@ std::string get_god_dislikes(god_type which_god, bool /*verbose*/)
std::string text = god_name(which_god);
text += " dislikes it when ";
text += comma_separated_line(dislikes.begin(), dislikes.end(),
- ", or ", ", ");
+ " or ", ", ");
text += ".";
return (text);