diff options
author | Daniel Gustafsson <daniel@yesql.se> | 2019-03-22 11:38:11 +0100 |
---|---|---|
committer | Daniel Gustafsson <daniel@yesql.se> | 2019-03-22 11:39:03 +0100 |
commit | d0c1268f99dca8ac089ec93a9a4c2a8af1f95ae2 (patch) | |
tree | a632168c29f1c16e02d121d9c85c9765f5af3b09 /lib | |
parent | efd9fba68189c70c2a48d9726b25df25ba87fcd0 (diff) | |
download | curl-d0c1268f99dca8ac089ec93a9a4c2a8af1f95ae2.tar.gz |
lib: Fix typos in comments
Diffstat (limited to 'lib')
-rw-r--r-- | lib/altsvc.c | 2 | ||||
-rw-r--r-- | lib/mime.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/altsvc.c b/lib/altsvc.c index 64ca2655d..164346645 100644 --- a/lib/altsvc.c +++ b/lib/altsvc.c @@ -521,7 +521,7 @@ CURLcode Curl_altsvc_parse(struct Curl_easy *data, p++; result = getalnum(&p, alpnbuf, sizeof(alpnbuf)); if(result) - /* failed to parse, but since we alredy did at least one host we + /* failed to parse, but since we already did at least one host we return OK */ return CURLE_OK; } diff --git a/lib/mime.h b/lib/mime.h index ea34a75a6..0721c8ca4 100644 --- a/lib/mime.h +++ b/lib/mime.h @@ -88,7 +88,7 @@ typedef struct { size_t offset; /* State-dependent offset. */ } mime_state; -/* mimimum buffer size for the boundary string */ +/* minimum buffer size for the boundary string */ #define MIME_BOUNDARY_LEN (24 + MIME_RAND_BOUNDARY_CHARS + 1) /* A mime multipart. */ |