From 78db8293f6e9f53d836fe507d9c73ca0b4776b3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Thu, 18 Feb 2016 18:25:56 +0100 Subject: [PATCH] core: fix typo 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 e40538176..eb65084ee 100644 --- a/src/core/wee-string.c +++ b/src/core/wee-string.c @@ -2359,7 +2359,7 @@ string_iconv_from_internal (const char *charset, const char *string) /* * optimized for UTF-8: if charset is NULL => we use term charset => if - * this charset is already UTF-8, then no iconv needed + * this charset is already UTF-8, then no iconv is needed */ if (local_utf8 && (!charset || !charset[0])) return input;