diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c index 8833e9c6..db309bb8 100644 --- a/src/microhttpd/connection.c +++ b/src/microhttpd/connection.c @@ -346,7 +346,7 @@ #endif /** - * Response text used when the request has unsupported "Transfer-Enconding:". + * Response text used when the request has unsupported "Transfer-Encoding:". */ #ifdef HAVE_MESSAGES #define REQUEST_UNSUPPORTED_TR_ENCODING \ @@ -360,7 +360,7 @@ /** * Response text used when the request has unsupported both headers: - * "Transfer-Enconding:" and "Content-Length:" + * "Transfer-Encoding:" and "Content-Length:" */ #ifdef HAVE_MESSAGES #define REQUEST_LENGTH_WITH_TR_ENCODING \ diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c index 89dd535f..9b088803 100644 --- a/src/microhttpd/daemon.c +++ b/src/microhttpd/daemon.c @@ -5535,7 +5535,7 @@ MHD_run (struct MHD_Daemon *daemon) /** - * Run websever operation with possible blocking. + * Run webserver operation with possible blocking. * * This function does the following: waits for any network event not more than * specified number of milliseconds, processes all incoming and outgoing data, diff --git a/src/microhttpd/internal.h b/src/microhttpd/internal.h index 6d6f944d..581f6864 100644 --- a/src/microhttpd/internal.h +++ b/src/microhttpd/internal.h @@ -641,7 +641,7 @@ enum MHD_CONNECTION_STATE MHD_CONNECTION_HEADERS_RECEIVED = MHD_CONNECTION_REQ_HEADERS_RECEIVING + 1, /** - * We have processed the request headers. Send 100 continue. + * We have processed the request headers. Call application callback. */ MHD_CONNECTION_HEADERS_PROCESSED = MHD_CONNECTION_HEADERS_RECEIVED + 1,