Skip to content

Commit cfc9f74

Browse files
committed
Remove duplicate copyright named character entry.
1 parent 98162ed commit cfc9f74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/MarkdownKit/HTML/NamedCharacters.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,6 @@ public struct NamedCharacters {
337337
"∐" : "\u{02210}",
338338
"∐" : "\u{02210}",
339339
"©" : "\u{000A9}",
340-
"©" : "\u{000A9}",
341340
"℗" : "\u{02117}",
342341
"&CounterClockwiseContourIntegral;": "\u{02233}",
343342
"↵" : "\u{021B5}",
@@ -2171,6 +2170,7 @@ public struct NamedCharacters {
21712170
]
21722171

21732172
public static let characterNameMap: [Character : String] = {
2173+
print("COUNT = \(NamedCharacters.namedCharacterMap.count)")
21742174
var map = [Character : String](minimumCapacity: NamedCharacters.namedCharacterMap.count)
21752175
for (k, v) in NamedCharacters.namedCharacterMap {
21762176
map[v] = k

0 commit comments

Comments
 (0)