From: Daniel Stenberg Date: Mon, 16 Nov 2015 07:22:08 +0000 (+0100) Subject: http2: minor comment typo X-Git-Tag: curl-7_46_0~46 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=39904d6f7d8427f46aa5a514983911493b86ebe8;p=thirdparty%2Fcurl.git http2: minor comment typo --- diff --git a/lib/http2.c b/lib/http2.c index 9594e6c5c7..df6cb0c734 100644 --- a/lib/http2.c +++ b/lib/http2.c @@ -280,7 +280,7 @@ char *curl_pushheader_byname(struct curl_pushheaders *h, const char *header) size_t i; for(i=0; ipush_headers_used; i++) { if(!strncmp(header, stream->push_headers[i], len)) { - /* sub-match, make sure that it us followed by a colon */ + /* sub-match, make sure that it is followed by a colon */ if(stream->push_headers[i][len] != ':') continue; return &stream->push_headers[i][len+1];