From 4b4c5851070cee3f4a0676203ddc36d24a983b46 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Sun, 30 Jul 2023 01:38:47 -0400 Subject: [PATCH] spelling: parenthesis 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 6c3c405..1cb10a1 100644 --- a/argtable3.c +++ b/argtable3.c @@ -3813,8 +3813,8 @@ static const TRexChar* g_nnames[] = {_SC("NONE"), _SC("OP_GREEDY"), _SC("OP_O #endif #define OP_GREEDY (MAX_CHAR + 1) /* * + ? {n} */ #define OP_OR (MAX_CHAR + 2) -#define OP_EXPR (MAX_CHAR + 3) /* parentesis () */ -#define OP_NOCAPEXPR (MAX_CHAR + 4) /* parentesis (?:) */ +#define OP_EXPR (MAX_CHAR + 3) /* parenthesis () */ +#define OP_NOCAPEXPR (MAX_CHAR + 4) /* parenthesis (?:) */ #define OP_DOT (MAX_CHAR + 5) #define OP_CLASS (MAX_CHAR + 6) #define OP_CCLASS (MAX_CHAR + 7)