From de361c705c430dd7f56e154cf9987f7978d03258 Mon Sep 17 00:00:00 2001 From: Vincent Esche Date: Mon, 7 Jan 2019 12:27:58 +0100 Subject: [PATCH] Fix missing trailing semicolon in character escapings (#59) --- 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?