From f52c126c439c7f89632d64865ee85c6cc168973f Mon Sep 17 00:00:00 2001 From: weihsinyeh Date: Tue, 16 Apr 2024 02:38:07 +0800 Subject: [PATCH] Fix typo Correct `parameters name` to `parameter's name` in a comment. --- examples/hello-5.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/hello-5.c b/examples/hello-5.c index 3447855..96f179a 100644 --- a/examples/hello-5.c +++ b/examples/hello-5.c @@ -18,7 +18,7 @@ static int myintarray[2] = { 420, 420 }; static int arr_argc = 0; /* module_param(foo, int, 0000) - * The first param is the parameters name. + * The first param is the parameter's name. * The second param is its data type. * The final argument is the permissions bits, * for exposing parameters in sysfs (if non-zero) at a later stage.