diff --git a/HTMLParserDemo/AppDelegate.swift b/HTMLParserDemo/AppDelegate.swift
index 758f0ea..8a4711a 100644
--- a/HTMLParserDemo/AppDelegate.swift
+++ b/HTMLParserDemo/AppDelegate.swift
@@ -26,7 +26,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
- func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
+ func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
return true
}
diff --git a/Sources/HTMLSAXParser/HTMLSAXParser.swift b/Sources/HTMLSAXParser/HTMLSAXParser.swift
index 2730b1b..e0ba55a 100644
--- a/Sources/HTMLSAXParser/HTMLSAXParser.swift
+++ b/Sources/HTMLSAXParser/HTMLSAXParser.swift
@@ -34,7 +34,6 @@ public protocol HTMLSAXParseContext {
}
-
/// The HTMLSAXParser is a SAX style parser for HTML similar to NSXMLParser, however it uses enums with
/// associated types for the parsing events, rather than a delegate class. It is implemented as a simple
/// light-weight wrapper around HTMLParser found within the libxml2 library.