From 877ef1d27ce6481e3cd160f38ac67bee9efa5add Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Sun, 30 Jul 2023 01:33:01 -0400 Subject: [PATCH] spelling: other Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- argtable3.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/argtable3.c b/argtable3.c index 5371459..6c3c405 100644 --- a/argtable3.c +++ b/argtable3.c @@ -2876,9 +2876,9 @@ static void arg_file_resetfn(struct arg_file* parent) { static const char* arg_basename(const char* filename) { const char *result = NULL, *result1, *result2; - /* Find the last occurrence of eother file separator character. */ - /* Two alternative file separator chars are supported as legal */ - /* file separators but not both together in the same filename. */ + /* Find the last occurrence of other file separator character. */ + /* Two alternative file separator chars are supported as legal */ + /* file separators but not both together in the same filename. */ result1 = (filename ? strrchr(filename, FILESEPARATOR1) : NULL); result2 = (filename ? strrchr(filename, FILESEPARATOR2) : NULL);