From 8d65d92c6a18bb3116f8cab7e7c63848ab53225d Mon Sep 17 00:00:00 2001 From: dolorous Date: Tue, 6 Jan 2009 06:04:52 +0000 Subject: Comment fixes. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8264 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/output.cc | 4 ++-- 1 file 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; -- cgit v1.2.3-54-g00ecf