Capitalize U-turn

This commit is contained in:
Domenic Denicola 2020-11-29 16:19:45 -05:00
commit 2412fa0375

View file

@ -552,6 +552,9 @@ function fixMispellings(xml) {
// Preemptive(ly) is often hyphenated (not always). It should not be.
xml = xml.replace(/([Pp])re-emptive/g, "$1reemptive");
// All dictionaries agree this is capitalized.
xml = xml.replace(/u-turn/g, "U-turn");
return xml;
}