summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeil Moore <neil@s-z.org>2014-08-08 10:27:28 -0400
committerNeil Moore <neil@s-z.org>2014-08-08 10:27:28 -0400
commit5e3c43b5a8e04e208b72facf5678415ba07997bc (patch)
tree0a414e779c03dc95475602577f005f17f2510484
parent8f4210bb81f7c8dd2787e6549544985e1ef94d0b (diff)
downloadcrawl-ref-5e3c43b5a8e04e208b72facf5678415ba07997bc.tar.gz
crawl-ref-5e3c43b5a8e04e208b72facf5678415ba07997bc.zip
Fix possessive of "himself".
Apparently I completely forgot to clean up after my copy-pasting.
-rw-r--r--crawl-ref/source/libutil.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/crawl-ref/source/libutil.cc b/crawl-ref/source/libutil.cc
index ad4d3827b8..731da7c54e 100644
--- a/crawl-ref/source/libutil.cc
+++ b/crawl-ref/source/libutil.cc
@@ -432,10 +432,7 @@ string apostrophise(const string &name)
return "its own";
if (name == "himself")
- return "its own";
-
- if (name == "himself")
- return "its own";
+ return "his own";
if (name == "herself")
return "her own";