summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-util.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-12-22 04:43:29 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-12-22 04:43:29 +0000
commit7c834afb81a24105ed0125981dfc9648bd694f5e (patch)
tree674452517376fc47931261238d41ec32e7c19e09 /crawl-ref/source/mon-util.cc
parent5068f6dc94f12b70c47eaeb91f61683f55cc4e73 (diff)
downloadcrawl-ref-7c834afb81a24105ed0125981dfc9648bd694f5e.tar.gz
crawl-ref-7c834afb81a24105ed0125981dfc9648bd694f5e.zip
Add minor cosmetic fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@7902 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/mon-util.cc')
-rw-r--r--crawl-ref/source/mon-util.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/mon-util.cc b/crawl-ref/source/mon-util.cc
index c9926d62c5..422486b3da 100644
--- a/crawl-ref/source/mon-util.cc
+++ b/crawl-ref/source/mon-util.cc
@@ -740,8 +740,8 @@ int get_shout_noise_level(const shout_type shout)
}
}
-// Only beasts and chaos spawns uses S_RANDOM for noise type.
-// Pandemonium lords can also get here but this mostly used for the
+// Only beasts and chaos spawns use S_RANDOM for noise type.
+// Pandemonium lords can also get here but this is mostly used for the
// "says" verb used for insults.
static bool _shout_fits_monster(int type, int shout)
{
@@ -749,7 +749,7 @@ static bool _shout_fits_monster(int type, int shout)
return (false);
// Chaos spawns can do anything but demon taunts, since they're
- // not coherenet enough to actually say words.
+ // not coherent enough to actually say words.
if (type == MONS_CHAOS_SPAWN)
return (shout != S_DEMON_TAUNT);