summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-book.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-06-04 21:57:38 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-06-04 21:57:38 +0000
commitce65758963dc334cb18c4d49e53540dbfdd7b0a6 (patch)
tree4d6d91e89cfe1619e1c7b7e11edb61831f9db7a4 /crawl-ref/source/spl-book.cc
parentd5c46b944d92e3b36aaccb50135d8132e26a2228 (diff)
downloadcrawl-ref-ce65758963dc334cb18c4d49e53540dbfdd7b0a6.tar.gz
crawl-ref-ce65758963dc334cb18c4d49e53540dbfdd7b0a6.zip
Add spelling fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9892 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/spl-book.cc')
-rw-r--r--crawl-ref/source/spl-book.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/crawl-ref/source/spl-book.cc b/crawl-ref/source/spl-book.cc
index 1a630f259f..484ac98528 100644
--- a/crawl-ref/source/spl-book.cc
+++ b/crawl-ref/source/spl-book.cc
@@ -1428,17 +1428,17 @@ static bool _get_mem_list(spell_list &mem_spells,
{
std::string species = species_name(you.species, 0);
mprf(MSGCH_PROMPT,
- "You cannot memorize any of the available spells because you "
+ "You cannot memorise any of the available spells because you "
"are a %s.", lowercase_string(species).c_str());
}
else if (num_low_levels > 0)
- mpr("You do not have enough free spell levels to memorize any of the "
+ mpr("You do not have enough free spell levels to memorise any of the "
"available spells.", MSGCH_PROMPT);
else if (num_low_xl > 0)
- mpr("You aren't experienced enough yet to memorize any of the "
+ mpr("You aren't experienced enough yet to memorise any of the "
"available spells.", MSGCH_PROMPT);
else
- mpr("You can't memorize any new spells for an unknown reason; "
+ mpr("You can't memorise any new spells for an unknown reason; "
"please file a bug report.", MSGCH_PROMPT);
if (num_unreadable)
@@ -1622,8 +1622,8 @@ bool learn_spell()
sprintf(buf, "The only spellbook you have which contains that spell "
"is %s, a dangerous spellbook which will strike back at you "
- "if you memorisation attempt fails. Attempt to memorise "
- "anyways?",
+ "if your memorisation attempt fails. Attempt to memorise "
+ "anyway?",
book.name(DESC_NOCAP_THE).c_str());
if (!yesno(buf, false, 'n'))
{