summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-util.cc
diff options
context:
space:
mode:
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);