cleanup: comment typos

Spotted by 'codespell'

Closes #4957
This commit is contained in:
Daniel Stenberg 2020-02-20 15:18:38 +01:00
parent 150f45e8d1
commit 0c76795caf
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
5 changed files with 5 additions and 7 deletions

View file

@ -109,7 +109,7 @@ size_t tool_header_cb(char *ptr, size_t size, size_t nmemb, void *userdata)
size_t etag_length = 0;
etag_h = ptr;
/* point to first occurence of double quote */
/* point to first occurrence of double quote */
first = memchr(etag_h, '\"', cb);
/*
@ -127,7 +127,7 @@ size_t tool_header_cb(char *ptr, size_t size, size_t nmemb, void *userdata)
first++;
}
/* point to last occurence of double quote */
/* point to last occurrence of double quote */
last = memchr(first, '\"', cb);
if(!last) {