summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/itemname.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-06 18:24:44 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-06 18:24:44 +0000
commitea3628b9ef51448ff82aa801a0729e61929dfba4 (patch)
tree29296a05c171ce3a34f6940b0762e86c4ce63a6f /crawl-ref/source/itemname.cc
parent05073278bb7731681d0c11ae0517f1c70191c929 (diff)
downloadcrawl-ref-ea3628b9ef51448ff82aa801a0729e61929dfba4.tar.gz
crawl-ref-ea3628b9ef51448ff82aa801a0729e61929dfba4.zip
Add more minor cosmetic fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8273 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/itemname.cc')
-rw-r--r--crawl-ref/source/itemname.cc20
1 files changed, 10 insertions, 10 deletions
diff --git a/crawl-ref/source/itemname.cc b/crawl-ref/source/itemname.cc
index 7ae8372e2c..064880c298 100644
--- a/crawl-ref/source/itemname.cc
+++ b/crawl-ref/source/itemname.cc
@@ -155,11 +155,11 @@ std::string item_def::name(description_level_type descrip,
{
switch (descrip)
{
- case DESC_CAP_THE: buff << "The "; break;
- case DESC_NOCAP_THE: buff << "the "; break;
- case DESC_CAP_YOUR: buff << "Your "; break;
+ case DESC_CAP_THE: buff << "The "; break;
+ case DESC_NOCAP_THE: buff << "the "; break;
+ case DESC_CAP_YOUR: buff << "Your "; break;
case DESC_NOCAP_YOUR: buff << "your "; break;
- case DESC_NOCAP_ITS: buff << "its "; break;
+ case DESC_NOCAP_ITS: buff << "its "; break;
case DESC_CAP_A:
case DESC_NOCAP_A:
case DESC_INVENTORY_EQUIP:
@@ -182,18 +182,18 @@ std::string item_def::name(description_level_type descrip,
{
switch (descrip)
{
- case DESC_CAP_THE: buff << "The "; break;
- case DESC_NOCAP_THE: buff << "the "; break;
- case DESC_CAP_A: buff << (startvowel ? "An " : "A "); break;
+ case DESC_CAP_THE: buff << "The "; break;
+ case DESC_NOCAP_THE: buff << "the "; break;
+ case DESC_CAP_A: buff << (startvowel ? "An " : "A "); break;
- case DESC_CAP_YOUR: buff << "Your "; break;
+ case DESC_CAP_YOUR: buff << "Your "; break;
case DESC_NOCAP_YOUR: buff << "your "; break;
- case DESC_NOCAP_ITS: buff << "its "; break;
+ case DESC_NOCAP_ITS: buff << "its "; break;
case DESC_NOCAP_A:
case DESC_INVENTORY_EQUIP:
case DESC_INVENTORY:
- buff << (startvowel ? "an " : "a "); break;
+ buff << (startvowel ? "an " : "a "); break;
case DESC_PLAIN:
default: