summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/output.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-18 21:50:24 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-18 21:50:24 +0000
commit57880a7aab2b93929895ca8acabba2488461c8a4 (patch)
tree9ae471787f1bbf5b6b89047fe2b4eafd7cab57f2 /crawl-ref/source/output.cc
parentdb91dfdd93e527f909aca964e71ad05ee9d5d028 (diff)
downloadcrawl-ref-57880a7aab2b93929895ca8acabba2488461c8a4.tar.gz
crawl-ref-57880a7aab2b93929895ca8acabba2488461c8a4.zip
Fix most of 1995487:
- hack description for Trog bookburning ability - fix typo in Trog description git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5963 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/output.cc')
-rw-r--r--crawl-ref/source/output.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index d4e641f7b7..9baf1439e9 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -1451,7 +1451,7 @@ void update_monster_pane()
if (lines_needed > (unsigned int) max_print)
{
// Use type names rather than full names ("small zombie" vs
- // "rat zobmie") in order to take up less lines.
+ // "rat zombie") in order to take up less lines.
for (unsigned int i=1; i < mons.size(); i++)
mons[i].m_fullname = false;
std::sort(mons.begin(), mons.end(), monster_pane_info::less_than);