From: Emil Velikov Date: Sun, 9 Nov 2025 21:11:50 +0000 (+0000) Subject: rmmod: s/list of modulenames/modulenames/ X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ec8211d0bfc621f14912c612938a47a5121d7bfc;p=thirdparty%2Fkmod.git rmmod: s/list of modulenames/modulenames/ Drop the "list of" part - we are already (somewhat) consistently using modulenames across the tree. While in here, also drop the square brackets - the modulename(s) is not an optional argument. Signed-off-by: Emil Velikov Reviewed-by: Lucas De Marchi Link: https://github.com/kmod-project/kmod/pull/pull/400 Signed-off-by: Lucas De Marchi --- diff --git a/man/rmmod.8.scd b/man/rmmod.8.scd index 2f6bd56c..d4c22628 100644 --- a/man/rmmod.8.scd +++ b/man/rmmod.8.scd @@ -6,7 +6,7 @@ rmmod - Simple program to remove a module from the Linux Kernel # SYNOPSIS -*rmmod* [_OPTIONS_] [_list of modulenames_] +*rmmod* [_OPTIONS_] _modulenames_ # DESCRIPTION diff --git a/tools/rmmod.c b/tools/rmmod.c index 61f2e008..62c07894 100644 --- a/tools/rmmod.c +++ b/tools/rmmod.c @@ -36,7 +36,7 @@ static const struct option cmdopts[] = { static void help(void) { printf("Usage:\n" - "\t%s [options] [list of modulenames]\n" + "\t%s [options] modulenames\n" "Options:\n" "\t-f, --force DANGEROUS: forces a module unload and may\n" "\t crash your machine\n"