We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6304932 commit 5b4bf89Copy full SHA for 5b4bf89
Sources/OpenAPIRuntime/Interface/ErrorHandlingMiddleware.swift
@@ -80,8 +80,8 @@ public protocol HTTPResponseConvertible {
80
var httpBody: OpenAPIRuntime.HTTPBody? { get }
81
}
82
83
-/// Extension to HTTPResponseConvertible to provide default values for certian fields.
84
-public extension HTTPResponseConvertible {
85
- var httpHeaderFields: HTTPTypes.HTTPFields { [:] }
86
- var httpBody: OpenAPIRuntime.HTTPBody? { nil }
+/// Extension to HTTPResponseConvertible to provide default values for certain fields.
+extension HTTPResponseConvertible {
+ public var httpHeaderFields: HTTPTypes.HTTPFields { [:] }
+ public var httpBody: OpenAPIRuntime.HTTPBody? { nil }
87
0 commit comments