From: Yu Watanabe Date: Fri, 24 Jan 2025 13:08:53 +0000 (+0900) Subject: strv: fix typo X-Git-Tag: v258-rc1~1498 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c1e05180649f45a8f559d8ba74c432b19604e214;p=thirdparty%2Fsystemd.git strv: fix typo Follow-up for 5072f4268b89a71e47e59c434da0222f722c7f0e. --- diff --git a/src/basic/strv.c b/src/basic/strv.c index c9c4551cdca..7a42a0d44d2 100644 --- a/src/basic/strv.c +++ b/src/basic/strv.c @@ -865,7 +865,7 @@ bool strv_equal_ignore_order(char **a, char **b) { /* Just like strv_equal(), but doesn't care about the order of elements or about redundant entries * (i.e. it's even ok if the number of entries in the array differ, as long as the difference just - * consists of repititions) */ + * consists of repetitions). */ if (a == b) return true;