summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/invent.cc4
-rw-r--r--crawl-ref/source/spells2.cc2
2 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/invent.cc b/crawl-ref/source/invent.cc
index f11ff8b202..680e88fe5b 100644
--- a/crawl-ref/source/invent.cc
+++ b/crawl-ref/source/invent.cc
@@ -1311,7 +1311,7 @@ std::vector<SelItem> prompt_invent_items(
ret = letter_to_index( keyin );
if (!is_valid_item( you.inv[ret] ))
- mpr("You do not have any such object.");
+ mpr("You don't have any such object.");
else
break;
}
@@ -1697,7 +1697,7 @@ int prompt_invent_item( const char *prompt,
ret = letter_to_index( keyin );
if (must_exist && !is_valid_item( you.inv[ret] ))
- mpr("You do not have any such object.");
+ mpr("You don't have any such object.");
else if (check_warning_inscriptions( you.inv[ret], oper ))
break;
}
diff --git a/crawl-ref/source/spells2.cc b/crawl-ref/source/spells2.cc
index c0c7997458..22b3d345e7 100644
--- a/crawl-ref/source/spells2.cc
+++ b/crawl-ref/source/spells2.cc
@@ -2170,7 +2170,7 @@ bool prioritise_adjacent(coord_def & target, std::vector<coord_def> & candidates
// user can optionally select only a partial stack of fruit (the count
// variable will store the number of fruit the user wants). Return the
// index of the item selected in the user's inventory, or a negative
-// number if the prompt failed (user canceled or had no fruit).
+// number if the prompt failed (user cancelled or had no fruit).
int _prompt_for_fruit(int & count, const char * prompt_string)
{
int rc = prompt_invent_item(prompt_string,