diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2025-01-24 14:08:53 +0100 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2025-01-24 14:08:56 +0100 |
commit | c1e05180649f45a8f559d8ba74c432b19604e214 (patch) | |
tree | 8ed59fda295b116a2eb2f88b06df4de126fea59a /src/basic/strv.c | |
parent | Enforce per-user quota on /tmp/ and /dev/shm/ as user logs in (#36010) (diff) | |
download | systemd-c1e05180649f45a8f559d8ba74c432b19604e214.tar.xz systemd-c1e05180649f45a8f559d8ba74c432b19604e214.zip |
strv: fix typo
Follow-up for 5072f4268b89a71e47e59c434da0222f722c7f0e.
Diffstat (limited to '')
-rw-r--r-- | src/basic/strv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/basic/strv.c b/src/basic/strv.c index c9c4551cdc..7a42a0d44d 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; |