summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/output.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-06 06:04:52 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-06 06:04:52 +0000
commit8d65d92c6a18bb3116f8cab7e7c63848ab53225d (patch)
tree857945a69e26ffa6e99e82fb6e093a26a6faf050 /crawl-ref/source/output.cc
parent1c3aa7307852793ba0b700874ff92bb05e65a35f (diff)
downloadcrawl-ref-8d65d92c6a18bb3116f8cab7e7c63848ab53225d.tar.gz
crawl-ref-8d65d92c6a18bb3116f8cab7e7c63848ab53225d.zip
Comment fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8264 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 3b46be1616..9517081582 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -1557,7 +1557,7 @@ int update_monster_pane()
get_monster_pane_info(mons);
std::sort(mons.begin(), mons.end(), monster_pane_info::less_than_wrapper);
- // Count how many groups of monsters there are
+ // Count how many groups of monsters there are.
unsigned int lines_needed = mons.size();
for (unsigned int i = 1; i < mons.size(); i++)
if (!monster_pane_info::less_than(mons[i-1], mons[i]))
@@ -1569,7 +1569,7 @@ int update_monster_pane()
full_info = false;
// Use type names rather than full names ("small zombie" vs
- // "rat zombie") in order to take up less lines.
+ // "rat zombie") in order to take up fewer lines.
for (unsigned int i = 0; i < mons.size(); i++)
mons[i].m_fullname = false;