summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-mis.cc
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-09-23 21:50:33 -0500
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-09-23 21:50:33 -0500
commitb0ed14492f4344a3c3247fdc206fad74a2973bfe (patch)
tree6521cddd673638b367a3f5f3677c12fca9686bfc /crawl-ref/source/spl-mis.cc
parentb8e97166ca3207b75e437f852679c8c4b8e75b6c (diff)
downloadcrawl-ref-b0ed14492f4344a3c3247fdc206fad74a2973bfe.tar.gz
crawl-ref-b0ed14492f4344a3c3247fdc206fad74a2973bfe.zip
Add spelling fixes.
Diffstat (limited to 'crawl-ref/source/spl-mis.cc')
-rw-r--r--crawl-ref/source/spl-mis.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/crawl-ref/source/spl-mis.cc b/crawl-ref/source/spl-mis.cc
index b547edc719..22350bb495 100644
--- a/crawl-ref/source/spl-mis.cc
+++ b/crawl-ref/source/spl-mis.cc
@@ -2327,11 +2327,11 @@ void MiscastEffect::_earth(int severity)
break;
case 9:
{
- bool pluralized = true;
- std::string feet = you.foot_name(true, &pluralized);
+ bool pluralised = true;
+ std::string feet = you.foot_name(true, &pluralised);
std::ostringstream str;
- str << "Your " << feet << (pluralized ? " feel" : " feels")
+ str << "Your " << feet << (pluralised ? " feel" : " feels")
<< " warm.";
you_msg = str.str();
@@ -2448,13 +2448,13 @@ void MiscastEffect::_air(int severity)
break;
case 5:
{
- bool pluralized = true;
+ bool pluralised = true;
if (!hand_str.empty())
- pluralized = can_plural_hand;
+ pluralised = can_plural_hand;
else
- target->hand_name(true, &pluralized);
+ target->hand_name(true, &pluralised);
- if (pluralized)
+ if (pluralised)
{
you_msg = "Sparks of electricity dance between your "
"@hands@.";