From b8b5cd26bc733c3ab44740314d3703249e02f2e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Sun, 12 Oct 2014 12:02:41 +0200 Subject: [PATCH] core: remove extra spaces in a comment --- src/core/wee-string.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/wee-string.c b/src/core/wee-string.c index 5be100988..860f2967f 100644 --- a/src/core/wee-string.c +++ b/src/core/wee-string.c @@ -1473,7 +1473,7 @@ string_replace_regex (const char *string, void *regex, const char *replace, * array[1] = "de" * array[2] = "fghi" * array[3] = NULL - * string_split ("abc de fghi", " ", 1, 0, NULL) + * string_split ("abc de fghi", " ", 1, 0, NULL) * ==> array[0] = "abc de fghi" * array[1] = "de fghi" * array[2] = "fghi"