Commit b4ff9c60 authored by Kenton Varda's avatar Kenton Varda

Fix comment in http.c++.

parent fed68cae
...@@ -1063,7 +1063,8 @@ private: ...@@ -1063,7 +1063,8 @@ private:
}; };
class HttpNullEntityReader final: public HttpEntityBodyReader { class HttpNullEntityReader final: public HttpEntityBodyReader {
// Stream which reads until EOF. // Stream for an entity-body which is not present. Always returns EOF on read, but tryGetLength()
// may indicate non-zero in the special case of a response to a HEAD request.
public: public:
HttpNullEntityReader(HttpInputStream& inner, kj::Maybe<uint64_t> length) HttpNullEntityReader(HttpInputStream& inner, kj::Maybe<uint64_t> length)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment