Merge pull request #769 from timgates42/bugfix_typo_request

docs: fix simple typo, requst -> request
This commit is contained in:
UnknownShadow200 2020-12-20 07:37:49 +11:00 committed by GitHub
commit 32dbb2d51a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;