lib: Fix typos in comments

This commit is contained in:
Daniel Gustafsson 2019-03-22 11:38:11 +01:00
parent efd9fba681
commit d0c1268f99
2 changed files with 2 additions and 2 deletions

View File

@ -521,7 +521,7 @@ CURLcode Curl_altsvc_parse(struct Curl_easy *data,
p++; p++;
result = getalnum(&p, alpnbuf, sizeof(alpnbuf)); result = getalnum(&p, alpnbuf, sizeof(alpnbuf));
if(result) 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 OK */
return CURLE_OK; return CURLE_OK;
} }

View File

@ -88,7 +88,7 @@ typedef struct {
size_t offset; /* State-dependent offset. */ size_t offset; /* State-dependent offset. */
} mime_state; } 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) #define MIME_BOUNDARY_LEN (24 + MIME_RAND_BOUNDARY_CHARS + 1)
/* A mime multipart. */ /* A mime multipart. */