Skip to content

Commit

Permalink
Fixed HTTPResponse.description (#2664)
Browse files Browse the repository at this point in the history
Probably a bad conversion to multiline string. It had a leftover `" +`
  • Loading branch information
NachoSoto authored Jun 16, 2023
1 parent 44608c3 commit 4fff1dc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Sources/Networking/HTTPClient/HTTPResponse.swift
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ extension HTTPResponse: CustomStringConvertible {
}()

return """
HTTPResponse(" +
statusCode: \(self.statusCode.rawValue),
body: \(body),
verification: \(self.verificationResult)
HTTPResponse(
statusCode: \(self.statusCode.rawValue),
body: \(body),
verification: \(self.verificationResult)
)
"""
}
Expand Down

0 comments on commit 4fff1dc

Please sign in to comment.