summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/output.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-05-11 07:56:38 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-05-11 07:56:38 +0000
commit94d5d35e9b16cafcc39520a1c974c58ce24ddc86 (patch)
tree5b24045a85b318a619c34dd0a55c74bb4ca51b3b /crawl-ref/source/output.cc
parent90ac0755a3ded561037b612fa7adbf293887e050 (diff)
downloadcrawl-ref-94d5d35e9b16cafcc39520a1c974c58ce24ddc86.tar.gz
crawl-ref-94d5d35e9b16cafcc39520a1c974c58ce24ddc86.zip
Spelling fixes (mainly from Dylan.) Fixes 1716479, 1715722. Except that
I kept 'heavily armoured' (rather than 'heavily-armoured'.) We might want to be consistent as to whether we have single or double spacing after fullstops, but since both are used rather widely in the code I didn't fix it either way. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1447 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/output.cc')
-rw-r--r--crawl-ref/source/output.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index 3430247de6..b145a512fd 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -1555,7 +1555,7 @@ std::string status_mut_abilities()
case SP_GHOUL:
text += "saprovore 3";
- text += ", deterioriation";
+ text += ", deterioration";
have_any = true;
break;
@@ -1915,7 +1915,7 @@ std::string status_mut_abilities()
case MUT_DETERIORATION:
if (have_any)
text += ", ";
- snprintf(info, INFO_SIZE, "deteriotation %d", level);
+ snprintf(info, INFO_SIZE, "deterioration %d", level);
text += info;
have_any = true;
break;