summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/database.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/database.cc')
-rw-r--r--crawl-ref/source/database.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/database.cc b/crawl-ref/source/database.cc
index a3c2346e7f..0f0399e7cb 100644
--- a/crawl-ref/source/database.cc
+++ b/crawl-ref/source/database.cc
@@ -477,7 +477,7 @@ static std::string _getWeightedString(DBM *database, const std::string &key,
const std::string &suffix,
int fixed_weight = -1)
{
- // We have to canonicalize the key (in case the user typed it
+ // We have to canonicalise the key (in case the user typed it
// in and got the case wrong.)
std::string canonical_key = key + suffix;
lowercase(canonical_key);
@@ -599,7 +599,7 @@ static std::string _query_database(DBM *db, std::string key,
{
if (canonicalise_key)
{
- // We have to canonicalize the key (in case the user typed it
+ // We have to canonicalise the key (in case the user typed it
// in and got the case wrong.)
lowercase(key);
}