Skip to content

Commit

Permalink
Fix SwiftLint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
kean committed Apr 3, 2022
1 parent 828a707 commit 49d1ac9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Get/Request.swift
Expand Up @@ -19,7 +19,7 @@ public struct Request<Response> {
self.headers = headers
}

public init<U: Encodable>(method: String, path: String, query: [(String, String?)]? = nil, body: U?, headers: [String : String]? = nil) {
public init<U: Encodable>(method: String, path: String, query: [(String, String?)]? = nil, body: U?, headers: [String: String]? = nil) {
self.method = method
self.path = path
self.query = query
Expand Down

0 comments on commit 49d1ac9

Please sign in to comment.