From d4908178bfe98482ca2884f779e62f9736e859e5 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Sun, 30 Jul 2023 01:35:58 -0400 Subject: [PATCH] spelling: initialized Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- argtable3.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/argtable3.c b/argtable3.c index b3de5b1..5371459 100644 --- a/argtable3.c +++ b/argtable3.c @@ -5451,7 +5451,7 @@ static void arg_cat_option(char* dest, size_t ndest, const char* shortopts, cons if (shortopts) { char option[3]; - /* note: option array[] is initialiazed dynamically here to satisfy */ + /* note: option array[] is initialized dynamically here to satisfy */ /* a deficiency in the watcom compiler wrt static array initializers. */ option[0] = '-'; option[1] = shortopts[0]; @@ -5509,7 +5509,7 @@ static void arg_cat_optionv(char* dest, size_t ndest, const char* shortopts, con /* "-a|-b|-c" */ char shortopt[3]; - /* note: shortopt array[] is initialiazed dynamically here to satisfy */ + /* note: shortopt array[] is initialized dynamically here to satisfy */ /* a deficiency in the watcom compiler wrt static array initializers. */ shortopt[0] = '-'; shortopt[1] = *c;