From 5e3c43b5a8e04e208b72facf5678415ba07997bc Mon Sep 17 00:00:00 2001 From: Neil Moore Date: Fri, 8 Aug 2014 10:27:28 -0400 Subject: Fix possessive of "himself". Apparently I completely forgot to clean up after my copy-pasting. --- crawl-ref/source/libutil.cc | 5 +---- 1 file changed, 1 insertion(+), 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"; -- cgit v1.2.3-54-g00ecf