diff options
author | Randy Dunlap <rdunlap@xenotime.net> | 2006-06-25 08:49:14 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-25 13:01:23 -0400 |
commit | c51d3dac321df417d59a47574caa7ab61b30d447 (patch) | |
tree | 2e4e44a4fc348a0610ddc627702c1ffb82123def /scripts | |
parent | ecfb251a95dfca6ca0dba63414e9c91fcbb92335 (diff) |
[PATCH] kernel-doc: use Members for struct fields consistently
kernel-doc struct fields should be consistently called "Members", not
"Arguments", so switch man-mode output to use "Members" like all of the
other formats do.
Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/kernel-doc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kernel-doc b/scripts/kernel-doc index 8bf1e54f14e0..00e21297aefe 100755 --- a/scripts/kernel-doc +++ b/scripts/kernel-doc | |||
@@ -1065,7 +1065,7 @@ sub output_struct_man(%) { | |||
1065 | } | 1065 | } |
1066 | print "};\n.br\n"; | 1066 | print "};\n.br\n"; |
1067 | 1067 | ||
1068 | print ".SH Arguments\n"; | 1068 | print ".SH Members\n"; |
1069 | foreach $parameter (@{$args{'parameterlist'}}) { | 1069 | foreach $parameter (@{$args{'parameterlist'}}) { |
1070 | ($parameter =~ /^#/) && next; | 1070 | ($parameter =~ /^#/) && next; |
1071 | 1071 | ||