Fix instances of "Warden’s" which should be "Wardens’"

This commit is contained in:
Domenic Denicola 2020-11-07 19:56:45 -05:00
commit 326ec148c9

View file

@ -395,6 +395,9 @@ function fixPossessives(xml) {
xml = xml.replace(/([^])Ms. Stillons([^s])/g, "$1Ms. Stillonss$2");
xml = xml.replace(/([^])Chuckles([^s])/g, "$1Chuckless$2");
// This one is not just missing the extra "s"; it's often misplaced.
xml = xml.replace(/Wardens/g, "Wardens");
return xml;
}