summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/describe.cc2
-rw-r--r--crawl-ref/source/output.cc4
-rw-r--r--crawl-ref/source/player.cc2
3 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index e437898529..91ad931466 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -2428,7 +2428,7 @@ static std::string religion_help( god_type god )
{
std::string result = "";
- switch(god)
+ switch (god)
{
case GOD_ZIN:
result += "Pray at one of " + god_name(god)
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index 22beca19e9..f9542ea459 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -548,8 +548,8 @@ struct status_light
// Prints burden, hunger,
// pray, holy, teleport, regen, insulation, fly/lev, invis, silence,
// conf. touch, bargain, sage
-// confused, beheld, fire, poison, disease, rot, held, glow/halo,
-// swift, fast, slow, breath
+// confused, beheld, fire, poison, disease, rot, held, glow, swift,
+// fast, slow, breath
//
// Note the usage of bad_ench_colour() correspond to levels that
// can be found in player.cc, ie those that the player can tell by
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index 8d48b4bd2b..a884c99594 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -3663,7 +3663,7 @@ void display_char_status()
if (halo_size > 6)
mpr( "You are illuminated by a large divine halo." );
else if (halo_size > 3)
- mpr( "You are illuminated by a medium divine halo." );
+ mpr( "You are illuminated by a divine halo." );
else
mpr( "You are illuminated by a small divine halo." );
}