libmicrohttpd2

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

commit d167151edfe1c087a15da09e07bac569be0bafbc
parent aa25a7e21a135943a3b10ffd7737b9b746d60a3e
Author: Evgeny Grin (Karlson2k) <k2k@drgrin.dev>
Date:   Thu,  2 Jul 2026 20:17:47 +0200

mhd_sys_options: fixed typo in internal doxy

Diffstat:
Msrc/incl_priv/mhd_sys_options.h | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/incl_priv/mhd_sys_options.h b/src/incl_priv/mhd_sys_options.h @@ -278,14 +278,14 @@ #ifdef HAVE_ATTR_FUNC_MALLOC_DEALLOC /** - * Indicates that function creates the object that mast be destructed by + * Indicates that function creates the object that must be destructed by * another function @a destructor. */ # define mhd_FN_OBJ_CONSTRUCTOR(destructor) \ __attribute__((malloc (destructor))) #else /** - * Indicates that function creates the object that mast be destructed by + * Indicates that function creates the object that must be destructed by * another function @a destructor. */ # define mhd_FN_OBJ_CONSTRUCTOR(destructor) /* empty */