Fix misspellings of "Tattletale"

This commit is contained in:
Domenic Denicola 2020-12-19 14:40:21 -05:00
commit 3aece3e05e

View file

@ -365,6 +365,9 @@ function standardizeNames(xml) {
// 13 instances of Elman to 1 of Elmann
xml = xml.replace(/Elmann/g, "Elman");
// Thousands of instances of Tattletale to 4 instances of Tatteltale
xml = xml.replace(/Tatteltale/g, "Tattletale");
return xml;
}