Skip to content

Commit

Permalink
some lets in Requests were vars by accident (#163)
Browse files Browse the repository at this point in the history
  • Loading branch information
weissi authored Feb 11, 2020
1 parent 70ad494 commit f648c04
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Sources/AsyncHTTPClient/HTTPHandler.swift
Original file line number Diff line number Diff line change
Expand Up @@ -139,11 +139,11 @@ extension HTTPClient {
}

/// Request HTTP method, defaults to `GET`.
public var method: HTTPMethod
public let method: HTTPMethod
/// Remote URL.
public var url: URL
public let url: URL
/// Remote HTTP scheme, resolved from `URL`.
public var scheme: String
public let scheme: String
/// Remote host, resolved from `URL`.
public let host: String
/// Request custom HTTP Headers, defaults to no headers.
Expand Down

0 comments on commit f648c04

Please sign in to comment.