summaryrefslogtreecommitdiffstats
path: root/src/basic/strv.c
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2025-01-24 14:08:53 +0100
committerYu Watanabe <watanabe.yu+github@gmail.com>2025-01-24 14:08:56 +0100
commitc1e05180649f45a8f559d8ba74c432b19604e214 (patch)
tree8ed59fda295b116a2eb2f88b06df4de126fea59a /src/basic/strv.c
parentEnforce per-user quota on /tmp/ and /dev/shm/ as user logs in (#36010) (diff)
downloadsystemd-c1e05180649f45a8f559d8ba74c432b19604e214.tar.xz
systemd-c1e05180649f45a8f559d8ba74c432b19604e214.zip
strv: fix typo
Follow-up for 5072f4268b89a71e47e59c434da0222f722c7f0e.
Diffstat (limited to '')
-rw-r--r--src/basic/strv.c2
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;