From 3aece3e05e486654da2960022f0b7c008d2f9351 Mon Sep 17 00:00:00 2001 From: Domenic Denicola Date: Sat, 19 Dec 2020 14:40:21 -0500 Subject: [PATCH] Fix misspellings of "Tattletale" --- lib/convert-worker.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/convert-worker.js b/lib/convert-worker.js index 5873150..4c8e5c9 100644 --- a/lib/convert-worker.js +++ b/lib/convert-worker.js @@ -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; }