libmicrohttpd2

HTTP server C library (MHD 2.x, alpha)
Log | Files | Refs | README | LICENSE

commit f893a7cbd453e69c90cfd80b534c084da916a1e6
parent 633a945fe62c0907e51d4555fe8af27627e0c078
Author: Evgeny Grin (Karlson2k) <k2k@drgrin.dev>
Date:   Sun,  5 Jul 2026 21:06:15 +0200

post_parser_funcs: fixed typos in doxy

Diffstat:
Msrc/mhd2/post_parser_funcs.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/mhd2/post_parser_funcs.c b/src/mhd2/post_parser_funcs.c @@ -76,7 +76,7 @@ enum MHD_FIXED_ENUM_ mhd_MPartDetectResult { /** - * Sting processed successfully, boundary detected + * String processed successfully, boundary detected */ mhd_MPART_DET_OK = 0 , @@ -99,10 +99,10 @@ enum MHD_FIXED_ENUM_ mhd_MPartDetectResult * @param h_cnt_tp the 'Content-Type:' header value string * @return 'mhd_MPART_DET_OK' if processed successfully and boundary has been * detected and set, - * 'mhd_MPART_DET_ERROR_SET' is has some error in processing which + * 'mhd_MPART_DET_ERROR_SET' if it has some error in processing which * resulted in specific error set in * the stream, - * 'mhd_MPART_DET_NO_MPART' is string is not 'multipart/form-data' data + * 'mhd_MPART_DET_NO_MPART' if string is not 'multipart/form-data' data */ static MHD_FN_PAR_NONNULL_ALL_ enum mhd_MPartDetectResult process_mpart_header (struct MHD_Connection *restrict c,