Fix spacing

This commit is contained in:
Nate Weaver 2020-02-01 19:19:33 -06:00
parent 782dfd688e
commit 0d128c0c3c
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ struct FaviconURLFinder {
/// - homePageURL: The page to search.
/// - completion: A closure called when the links have been found.
/// - urls: An array of favicon URLs as strings.
static func findFaviconURLs(with homePageURL: String, _ completion: @escaping (_ urls:[String]?) -> Void) {
static func findFaviconURLs(with homePageURL: String, _ completion: @escaping (_ urls: [String]?) -> Void) {
guard let _ = URL(string: homePageURL) else {
completion(nil)