From 28fa4463e054595eeaa37ff75dffdc9904ca140a Mon Sep 17 00:00:00 2001 From: Dimitris C Date: Tue, 1 Dec 2020 11:08:08 +0000 Subject: [PATCH] Update AudioStreaming/Streaming/Parsers/HTTPHeaderParser.swift --- AudioStreaming/Streaming/Parsers/HTTPHeaderParser.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AudioStreaming/Streaming/Parsers/HTTPHeaderParser.swift b/AudioStreaming/Streaming/Parsers/HTTPHeaderParser.swift index 95665c3..d45d161 100644 --- a/AudioStreaming/Streaming/Parsers/HTTPHeaderParser.swift +++ b/AudioStreaming/Streaming/Parsers/HTTPHeaderParser.swift @@ -28,7 +28,7 @@ protocol HTTPHeaderParsing: Parser { /// Returns the value for the given field of the headers in the given `HTTPURLResponse` /// /// - Parameters: - /// - field: The header field to be search + /// - field: The header field to be searched /// - response: The `HTTPURLResponse` for the header /// - Returns: A `String` if the field exists in the headers otherwise `nil` func value(forHTTPHeaderField field: String, in response: HTTPURLResponse) -> String?