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.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index 80d45c124e..0455c808c8 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -1638,7 +1638,7 @@ void append_spells(std::string &desc, const item_def &item)
if (stype == SPELL_NO_SPELL)
continue;
- std::string name = (is_memorised(stype)) ? "*" : "";
+ std::string name = (is_memorised(stype) ? "*" : "");
name += spell_title(stype);
desc += name;
for (unsigned int i = 0; i < 35 - name.length(); i++)