summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/describe.cc')
-rw-r--r--crawl-ref/source/describe.cc6
1 files changed, 3 insertions, 3 deletions
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<std::string> 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);