summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/store.cc
diff options
context:
space:
mode:
authorChris Oelmueller <chris.oelmueller@gmail.com>2013-07-22 23:33:29 +0200
committerChris Campbell <chriscampbell89@gmail.com>2013-07-23 17:27:50 +0100
commit1e8a74ea0b0e105d33382862bf59a8313bd81fa0 (patch)
treecc43871811deaccbecb55794c39735d433aadac1 /crawl-ref/source/store.cc
parent925c3d30d6b0207b59945da8e90a9150620cd866 (diff)
downloadcrawl-ref-1e8a74ea0b0e105d33382862bf59a8313bd81fa0.tar.gz
crawl-ref-1e8a74ea0b0e105d33382862bf59a8313bd81fa0.zip
Fix lots of typos
Diffstat (limited to 'crawl-ref/source/store.cc')
-rw-r--r--crawl-ref/source/store.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/store.cc b/crawl-ref/source/store.cc
index b486e726f1..94bd6a729f 100644
--- a/crawl-ref/source/store.cc
+++ b/crawl-ref/source/store.cc
@@ -1440,7 +1440,7 @@ const CrawlStoreValue& CrawlHashTable::get_value(const string &key) const
{
#ifdef ASSERTS
if (!hash_map)
- die("trying to read non-existant property \"%s\"", key.c_str());
+ die("trying to read non-existent property \"%s\"", key.c_str());
#endif
ASSERT_VALIDITY();
@@ -1449,7 +1449,7 @@ const CrawlStoreValue& CrawlHashTable::get_value(const string &key) const
#ifdef ASSERTS
if (i == hash_map->end())
- die("trying to read non-existant property \"%s\"", key.c_str());
+ die("trying to read non-existent property \"%s\"", key.c_str());
#endif
ASSERT(i->second.type != SV_NONE);
ASSERT(!(i->second.flags & SFLAG_UNSET));