Mark some stuff private

This commit is contained in:
Nate Weaver 2020-04-26 18:18:16 -05:00
parent d06e7447f0
commit ee4830022e
1 changed files with 2 additions and 2 deletions

View File

@ -293,7 +293,7 @@ extension NSAttributedString {
}
/// This is a very, very basic implementation that only covers our needs.
struct CountedSet<Element> where Element: Hashable {
private struct CountedSet<Element> where Element: Hashable {
private var _storage = [Element: Int]()
mutating func insert(_ element: Element) {
@ -323,7 +323,7 @@ struct CountedSet<Element> where Element: Hashable {
}
}
extension String {
private extension String {
var decodedEntity: String {
(self as NSString).rsparser_stringByDecodingHTMLEntities() as String
}