Skip to content

Commit 37e6cca

Browse files
committed
Fix format
1 parent 43c78a4 commit 37e6cca

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Sources/HTTPTypes/HTTPResponse.swift

+3-3
Original file line numberDiff line numberDiff line change
@@ -159,9 +159,9 @@ public struct HTTPResponse: Sendable, Hashable {
159159
public var status: Status {
160160
get {
161161
var codeIterator = self.pseudoHeaderFields.status.rawValue._storage.utf8.makeIterator()
162-
let code = (Int(codeIterator.next()! - 48) * 100 +
163-
Int(codeIterator.next()! - 48) * 10 +
164-
Int(codeIterator.next()! - 48))
162+
let code = Int(codeIterator.next()! - 48) * 100 +
163+
Int(codeIterator.next()! - 48) * 10 +
164+
Int(codeIterator.next()! - 48)
165165
return Status(uncheckedCode: code, reasonPhrase: self.reasonPhrase)
166166
}
167167
set {

0 commit comments

Comments
 (0)