aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2015-11-16 08:22:08 +0100
committerDaniel Stenberg <daniel@haxx.se>2015-11-16 08:22:08 +0100
commit39904d6f7d8427f46aa5a514983911493b86ebe8 (patch)
treedcb6494430ef4aa2f01c6f8de529aa638737ce2c
parent88f585c3a10ef2fa2123bf55580544de2c20bd2e (diff)
http2: minor comment typo
-rw-r--r--lib/http2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http2.c b/lib/http2.c
index 9594e6c5c..df6cb0c73 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; i<stream->push_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];