From 0d1bd2c750416364afe095f43cb602bcd2e8b47c Mon Sep 17 00:00:00 2001 From: Vincent Esche Date: Mon, 7 Jan 2019 12:03:10 +0100 Subject: [PATCH] Fix missing trailing semicolon in character escapings --- Sources/XMLCoder/Auxiliaries/XMLElement.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/XMLCoder/Auxiliaries/XMLElement.swift b/Sources/XMLCoder/Auxiliaries/XMLElement.swift index 30e82fb5..f535d210 100644 --- a/Sources/XMLCoder/Auxiliaries/XMLElement.swift +++ b/Sources/XMLCoder/Auxiliaries/XMLElement.swift @@ -9,7 +9,7 @@ import Foundation struct _XMLElement { static let attributesKey = "___ATTRIBUTES" - static let escapedCharacterSet = [("&", "&"), ("<", "<"), (">", ">"), ("'", "'"), ("\"", """)] + static let escapedCharacterSet = [("&", "&"), ("<", "<"), (">", ">"), ("'", "'"), ("\"", """)] var key: String var value: String?