From: Yu Watanabe Date: Mon, 7 Apr 2025 07:46:14 +0000 (+0900) Subject: string-util: fix typo X-Git-Tag: v258-rc1~889 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=500fd53a51f0722d54e7da23ea8abce180642ade;p=thirdparty%2Fsystemd.git string-util: fix typo Follow-up for 87b7d9b6ff23ec10b66bf53efeabf16ad85d7ad8. --- diff --git a/src/fundamental/string-util-fundamental.c b/src/fundamental/string-util-fundamental.c index a18b2bc4c9d..c2b58889db2 100644 --- a/src/fundamental/string-util-fundamental.c +++ b/src/fundamental/string-util-fundamental.c @@ -82,7 +82,7 @@ static bool is_valid_version_char(sd_char a) { int strverscmp_improved(const sd_char *a, const sd_char *b) { /* This function is similar to strverscmp(3), but it treats '-' and '.' as separators. * - * The logic is based on rpm's rpmvercmp(), but unlike rpmvercmp(), it distiguishes e.g. + * The logic is based on rpm's rpmvercmp(), but unlike rpmvercmp(), it distinguishes e.g. * '123a' and '123.a', with '123a' being newer. * * It allows direct comparison of strings which contain both a version and a release; e.g.