Fix more "scot-free" misspellings

This commit is contained in:
Domenic Denicola 2021-01-01 15:26:01 -05:00
commit 0efaf38170
2 changed files with 3 additions and 8 deletions

View file

@ -633,6 +633,9 @@ function fixMispellings(xml) {
// All dictionaries agree this is capitalized.
xml = xml.replace(/u-turn/g, "U-turn");
// https://www.dictionary.com/browse/scot-free
xml = xml.replace(/scott(?: |-)free/g, "scot-free");
return xml;
}