From dd5b0d6407661442a64461f032871da7c8bdcd1b Mon Sep 17 00:00:00 2001 From: "Evgeny Grin (Karlson2k)" Date: Tue, 27 Sep 2022 17:27:40 +0300 Subject: connection.c: fixed typo in comment --- src/microhttpd/connection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c index e894fe24..1dca8f94 100644 --- a/src/microhttpd/connection.c +++ b/src/microhttpd/connection.c @@ -3155,7 +3155,7 @@ parse_http_version (struct MHD_Connection *connection, const char *const h = http_string; /**< short alias */ mhd_assert (NULL != http_string); - /* String must starts with 'HTTP/d.d', case-sensetive match. + /* String must start with 'HTTP/d.d', case-sensetive match. * See https://datatracker.ietf.org/doc/html/rfc7230#section-2.6 */ if ((len != 8) || (h[0] != 'H') || (h[1] != 'T') || (h[2] != 'T') || (h[3] != 'P') || -- cgit v1.2.3