Skip to content

Commit

Permalink
Fix missing trailing semicolon in character escapings (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
regexident authored and hodovani committed Jan 7, 2019
1 parent c402dc4 commit de361c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/XMLCoder/Auxiliaries/XMLElement.swift
Expand Up @@ -9,7 +9,7 @@ import Foundation

struct _XMLElement {
static let attributesKey = "___ATTRIBUTES"
static let escapedCharacterSet = [("&", "&amp"), ("<", "&lt;"), (">", "&gt;"), ("'", "&apos;"), ("\"", "&quot;")]
static let escapedCharacterSet = [("&", "&amp;"), ("<", "&lt;"), (">", "&gt;"), ("'", "&apos;"), ("\"", "&quot;")]

var key: String
var value: String?
Expand Down

0 comments on commit de361c7

Please sign in to comment.