From 1a26eec12b05fd951ed7ce2a1a9165c1e9a79ea9 Mon Sep 17 00:00:00 2001 From: Craig Small Date: Sat, 3 Mar 2018 18:29:19 +1100 Subject: [PATCH] sysctl: fix typo in help Changed "a variables" to "the given variable(s)" References: procps-ng/procps#84 --- sysctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sysctl.c b/sysctl.c index 7286b2e7..c8a5c47d 100644 --- a/sysctl.c +++ b/sysctl.c @@ -117,7 +117,7 @@ static void __attribute__ ((__noreturn__)) fputs(_(" -b, --binary print value without new line\n"), out); fputs(_(" -e, --ignore ignore unknown variables errors\n"), out); fputs(_(" -N, --names print variable names without values\n"), out); - fputs(_(" -n, --values print only values of a variables\n"), out); + fputs(_(" -n, --values print only values of the given variable(s)\n"), out); fputs(_(" -p, --load[=] read values from file\n"), out); fputs(_(" -f alias of -p\n"), out); fputs(_(" --system read values from all system directories\n"), out);