docs: fix simple typo, requst -> request

There is a small typo in src/Http.c.

Should read `request` rather than `requst`.
This commit is contained in:
Tim Gates 2020-12-20 06:43:19 +11:00 committed by tgates
parent 1597ed76d7
commit 6b972d06af
No known key found for this signature in database
GPG Key ID: AE3BE0D53823CF05

View File

@ -760,7 +760,7 @@ static void Http_AddHeader(struct HttpRequest* req, const char* key, const cc_st
HTTP_ADDREQ_FLAG_ADD | HTTP_ADDREQ_FLAG_REPLACE);
}
/* Creates and sends a HTTP requst */
/* Creates and sends a HTTP request */
static cc_result Http_StartRequest(struct HttpRequest* req, cc_string* url, HINTERNET* handle) {
static const char* verbs[3] = { "GET", "HEAD", "POST" };
struct HttpCacheEntry entry;