From 81ab05b6e86811ea6e2bcadbf67c34ee6e7220a3 Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Wed, 12 Aug 2020 09:31:14 +0000 Subject: [PATCH] minor comment change in opt.h --- qse/include/qse/cmn/opt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qse/include/qse/cmn/opt.h b/qse/include/qse/cmn/opt.h index 3b416bc1..82115b20 100644 --- a/qse/include/qse/cmn/opt.h +++ b/qse/include/qse/cmn/opt.h @@ -68,7 +68,7 @@ struct qse_opt_t /* --------------------------------------------------------------------- */ enum qse_cli_optflag_t { - QSE_CLI_REQUIRE_OPTNAME = (1 << 0), /* if set, the option itself is require */ + QSE_CLI_REQUIRE_OPTNAME = (1 << 0), /* if set, the option itself is required */ QSE_CLI_REQUIRE_OPTVAL = (1 << 1), /* if set, the option's value is mandatory */ QSE_CLI_DISCRETIONARY_OPTVAL = (1 << 2) /* if set, the option's value is optional. */ };