From 3640e15fa29a381129341dc95a570f0acb3269b6 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Wed, 27 Jan 2021 11:54:39 -0500 Subject: [PATCH] Fix misspelling "coprorate" -> "corporate" --- modules/validations/outdated_tags.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/validations/outdated_tags.js b/modules/validations/outdated_tags.js index 58c2f5e56..1423d7a27 100644 --- a/modules/validations/outdated_tags.js +++ b/modules/validations/outdated_tags.js @@ -242,7 +242,7 @@ export function validationOutdatedTags() { // Exceptions, throw out the match if ( (!itemQID || itemQID === notQID) || // no `*:wikidata` or matched a `not:*:wikidata` - (newTags.office && !item.tags.office) // feature may be a coprorate office for a brand? - #6416 + (newTags.office && !item.tags.office) // feature may be a corporate office for a brand? - #6416 ) { match = null; // forget match and keep looking continue; // (it might make sense to stop looking, not sure)