From: Naoki Wake Date: Tue, 19 Aug 2025 01:49:35 +0000 (-0700) Subject: kill: comments: fix grammar in parse_arguments() X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6289701fb4f0cf0a7a1065ea65f9feb69a4f5d82;p=thirdparty%2Futil-linux.git kill: comments: fix grammar in parse_arguments() Insert 'that' so the sentence reads '... only option that can be used with other options.' Comment-only change; no functional impact. Signed-off-by: Naoki Wake --- diff --git a/misc-utils/kill.c b/misc-utils/kill.c index 629637c90..fd947b923 100644 --- a/misc-utils/kill.c +++ b/misc-utils/kill.c @@ -325,7 +325,7 @@ static char **parse_arguments(int argc, char **argv, struct kill_control *ctl) char *arg; /* Loop through the arguments. Actually, -a is the only option - * can be used with other options. The 'kill' is basically a + * that can be used with other options. The 'kill' is basically a * one-option-at-most program. */ for (argc--, argv++; 0 < argc; argc--, argv++) { arg = *argv;