From 7f93f81a823042965f6469dd8fdc4444dc90f6ad Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Mon, 9 Sep 2024 10:59:42 -0400 Subject: [PATCH] spelling: separator Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- tests/unit/core/test-core-string.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/unit/core/test-core-string.cpp b/tests/unit/core/test-core-string.cpp index 25cda6c62..e0f31e68a 100644 --- a/tests/unit/core/test-core-string.cpp +++ b/tests/unit/core/test-core-string.cpp @@ -1770,7 +1770,7 @@ TEST(CoreString, Split) STRCMP_EQUAL(NULL, argv[2]); string_free_split (argv); - /* standard split with comma separtor and empty item (keep this item) */ + /* standard split with comma separator and empty item (keep this item) */ flags = 0; argc = -1; argv = string_split ("abc,,fghi", ",", NULL, flags, 0, &argc); @@ -1782,7 +1782,7 @@ TEST(CoreString, Split) STRCMP_EQUAL(NULL, argv[3]); string_free_split (argv); - /* standard split with comma separtor and empty items (keep them) */ + /* standard split with comma separator and empty items (keep them) */ flags = 0; argc = -1; argv = string_split (",abc,,fghi,", ",", NULL, flags, 0, &argc); @@ -1797,7 +1797,7 @@ TEST(CoreString, Split) string_free_split (argv); /* - * standard split with comma separtor and empty items (keep them), + * standard split with comma separator and empty items (keep them), * max 2 items */ flags = 0; @@ -1811,7 +1811,7 @@ TEST(CoreString, Split) string_free_split (argv); /* - * standard split with comma separtor and empty items (keep them), + * standard split with comma separator and empty items (keep them), * max 3 items */ flags = 0; @@ -1826,7 +1826,7 @@ TEST(CoreString, Split) string_free_split (argv); /* - * standard split with comma separtor and empty items (keep them), + * standard split with comma separator and empty items (keep them), * max 4 items */ flags = 0;