summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/invent.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/invent.cc')
-rw-r--r--crawl-ref/source/invent.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/invent.cc b/crawl-ref/source/invent.cc
index d736e1d8d7..d1e47e9b16 100644
--- a/crawl-ref/source/invent.cc
+++ b/crawl-ref/source/invent.cc
@@ -349,7 +349,7 @@ static std::string _no_selectables_message(int item_selector)
case OSEL_MEMORISE:
return("You aren't carrying any spellbooks.");
case OSEL_RECHARGE:
- return("You aren't carrying any rechargable items.");
+ return("You aren't carrying any rechargeable items.");
case OSEL_ENCH_ARM:
return("You aren't carrying any armour which can be enchanted "
"further.");
@@ -843,7 +843,7 @@ static bool _item_class_selected(const item_def &i, int selector)
return (itype == OBJ_SCROLLS || itype == OBJ_BOOKS);
case OSEL_RECHARGE:
- return (item_is_rechargable(i, true));
+ return (item_is_rechargeable(i, true));
case OSEL_ENCH_ARM:
return (is_enchantable_armour(i, true));