From 7848771b1a896e4469e1ad193af4caf15b846383 Mon Sep 17 00:00:00 2001 From: myk002 Date: Tue, 4 May 2021 12:35:22 -0700 Subject: [PATCH] fix label misspelling in tiletypes --- plugins/tiletypes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/tiletypes.cpp b/plugins/tiletypes.cpp index 31ff096f1..7487ef649 100644 --- a/plugins/tiletypes.cpp +++ b/plugins/tiletypes.cpp @@ -316,7 +316,7 @@ std::ostream &operator<<(std::ostream &stream, const TileType &paint) needSpace = false; } - stream << (paint.dig ? "DESIGNATED" : "UNDESIGATNED"); + stream << (paint.dig ? "DESIGNATED" : "UNDESIGNATED"); used = true; needSpace = true; }