summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/abl-show.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-05-25 05:12:24 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-05-25 05:12:24 +0000
commita02d2b42da84734c88bceade3f9f0ab21b8fb701 (patch)
treed87f0fa36a8845bb587d3eb584e538ae4d6564d3 /crawl-ref/source/abl-show.cc
parentc86837a908de5a291088fccea2d1df2b8c30712a (diff)
downloadcrawl-ref-a02d2b42da84734c88bceade3f9f0ab21b8fb701.tar.gz
crawl-ref-a02d2b42da84734c88bceade3f9f0ab21b8fb701.zip
Comment fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9819 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/abl-show.cc')
-rw-r--r--crawl-ref/source/abl-show.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/crawl-ref/source/abl-show.cc b/crawl-ref/source/abl-show.cc
index 908e609bd0..5f830b4ed6 100644
--- a/crawl-ref/source/abl-show.cc
+++ b/crawl-ref/source/abl-show.cc
@@ -817,8 +817,8 @@ static void _print_talent_description(talent tal)
std::string name = get_ability_def(tal.which).name;
- // The suffix is necessary to distinguish between similarly named spells.
- // Yes, this is a hack. (XXX)
+ // XXX: The suffix is necessary to distinguish between similarly
+ // named spells. Yes, this is a hack.
std::string lookup = getLongDescription(name + "ability");
if (lookup.empty())
{
@@ -1957,8 +1957,8 @@ int choose_ability_menu(const std::vector<talent>& talents)
if (Options.tutorial_left)
{
- // XXX This could be buggy if you manage to pick up lots and lots
- // of abilities during the tutorial.
+ // XXX: This could be buggy if you manage to pick up lots and
+ // lots of abilities during the tutorial.
abil_menu.set_more(tut_abilities_info());
}
else
@@ -2053,7 +2053,7 @@ std::vector<talent> your_talents(bool check_confused)
{
std::vector<talent> talents;
- // Species-based abilities
+ // Species-based abilities.
if (you.species == SP_MUMMY && you.experience_level >= 13)
_add_talent(talents, ABIL_MUMMY_RESTORATION, check_confused);