diff --git a/docs/c-api/http_server.h/mg_send_http_chunk.md b/docs/c-api/http_server.h/mg_send_http_chunk.md index 2ce64a1a..6a2a4d83 100644 --- a/docs/c-api/http_server.h/mg_send_http_chunk.md +++ b/docs/c-api/http_server.h/mg_send_http_chunk.md @@ -9,7 +9,7 @@ signature: | Sends buffer `buf` of size `len` to the client using chunked HTTP encoding. This function sends the buffer size as hex number + newline first, then the buffer itself, then the newline. For example, -`mg_send_http_chunk(nc, "foo", 3)` whill append the `3\r\nfoo\r\n` string +`mg_send_http_chunk(nc, "foo", 3)` will append the `3\r\nfoo\r\n` string to the `nc->send_mbuf` output IO buffer. NOTE: The HTTP header "Transfer-Encoding: chunked" should be sent prior to diff --git a/mongoose.h b/mongoose.h index 6b37f418..22a85666 100644 --- a/mongoose.h +++ b/mongoose.h @@ -4814,7 +4814,7 @@ int mg_http_check_digest_auth(struct http_message *hm, const char *auth_domain, * Sends buffer `buf` of size `len` to the client using chunked HTTP encoding. * This function sends the buffer size as hex number + newline first, then * the buffer itself, then the newline. For example, - * `mg_send_http_chunk(nc, "foo", 3)` whill append the `3\r\nfoo\r\n` string + * `mg_send_http_chunk(nc, "foo", 3)` will append the `3\r\nfoo\r\n` string * to the `nc->send_mbuf` output IO buffer. * * NOTE: The HTTP header "Transfer-Encoding: chunked" should be sent prior to