From 6dce7d753be877ebde49c4fe52b32029faac0a82 Mon Sep 17 00:00:00 2001 From: dolorous Date: Thu, 12 Feb 2009 18:53:48 +0000 Subject: 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 --- crawl-ref/source/describe.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'crawl-ref/source/describe.cc') diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc index adf578e393..374348e8cb 100644 --- a/crawl-ref/source/describe.cc +++ b/crawl-ref/source/describe.cc @@ -335,8 +335,8 @@ std::string randart_auto_inscription( const item_def& item ) const std::vector propnames = _randart_propnames(item); - return comma_separated_line(propnames.begin(), propnames.end(), - " ", " "); + return (comma_separated_line(propnames.begin(), propnames.end(), + " ", " ")); } void add_autoinscription( item_def &item, std::string ainscrip) @@ -3658,7 +3658,7 @@ std::string get_skill_description(int skill, bool need_title) std::string broken = "For example, you could "; broken += comma_separated_line(unarmed_attacks.begin(), unarmed_attacks.end(), - ", or ", ", "); + " or ", ", "); broken += "."; linebreak_string2(broken, 72); -- cgit v1.2.3-54-g00ecf