Skip to content

Commit f66fd8a

Browse files
committed
removed spaces
1 parent 685855f commit f66fd8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Xcode/Sources/HttpResponse.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ public enum HttpResponse {
161161

162162
func content() -> (length: Int, write: ((HttpResponseBodyWriter) throws -> Void)?) {
163163
switch self {
164-
case .ok(let body, _) : return body.content()
164+
case .ok(let body, _) : return body.content()
165165
case .badRequest(let body) : return body?.content() ?? (-1, nil)
166166
case .raw(_, _, _, let writer) : return (-1, writer)
167167
default : return (-1, nil)

0 commit comments

Comments
 (0)