Skip to content

Commit b72756a

Browse files
authored
Typo fix: Trasfer-Encoding -> Transfer-Encoding (#211)
1 parent 0fbfdcc commit b72756a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: Sources/AsyncHTTPClient/HTTPHandler.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ extension HTTPClient {
6464
///
6565
/// - parameters:
6666
/// - length: Body size. Request validation will be failed with `HTTPClientErrors.contentLengthMissing` if nil,
67-
/// unless `Trasfer-Encoding: chunked` header is set.
67+
/// unless `Transfer-Encoding: chunked` header is set.
6868
/// - stream: Body chunk provider.
6969
public static func stream(length: Int? = nil, _ stream: @escaping (StreamWriter) -> EventLoopFuture<Void>) -> Body {
7070
return Body(length: length, stream: stream)

0 commit comments

Comments
 (0)