From a464135f396cf3eeef550731787f7e1df632501e Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Fri, 6 Sep 2024 08:23:47 -0400 Subject: [PATCH] spelling: at Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/core/core-string.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/core-string.c b/src/core/core-string.c index c242b9d6b..7bc423d4a 100644 --- a/src/core/core-string.c +++ b/src/core/core-string.c @@ -2978,7 +2978,7 @@ string_split_command (const char *command, char separator) buffer[str_idx] = '\0'; str_idx = -1; p = buffer; - /* strip white spaces a the beginning of the line */ + /* strip white spaces at the beginning of the line */ while (*p == ' ') p++; if (p && p[0]) array[arr_idx++] = strdup (p);