Fix HttpPart description comment typo (#1963)

This commit is contained in:
Donghyeon Kim 2021-09-22 00:15:52 +09:00 committed by GitHub
parent 19403414ba
commit b93a5693f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ public struct HTTPRequestHead: Equatable {
/// A HTTP message is made up of a request or status line with several headers,
/// encoded by `.head`, zero or more body parts, and optionally some trailers. To
/// indicate that a complete HTTP message has been sent or received, we use `.end`,
/// which may also contain any trailers that make up the mssage.
/// which may also contain any trailers that make up the message.
public enum HTTPPart<HeadT: Equatable, BodyT: Equatable> {
case head(HeadT)
case body(BodyT)