From 2a820ccef1182186b0012bc38e1e77ebd22bdcbb Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Thu, 23 Dec 2021 09:59:50 +1100 Subject: [PATCH] docs: fix simple typo, automaticaly -> automatically There is a small typo in src/io/http/http_parser.c. Should read `automatically` rather than `automaticaly`. --- src/io/http/http_parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/io/http/http_parser.c b/src/io/http/http_parser.c index e07ef0a..d1c205d 100644 --- a/src/io/http/http_parser.c +++ b/src/io/http/http_parser.c @@ -1950,7 +1950,7 @@ size_t http_parser_execute (http_parser *parser, && parser->content_length != ULLONG_MAX); /* The difference between advancing content_length and p is because - * the latter will automaticaly advance on the next loop iteration. + * the latter will automatically advance on the next loop iteration. * Further, if content_length ends up at 0, we want to see the last * byte again for our message complete callback. */