[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>
This commit is contained in:
Randy Dunlap 2006-06-25 05:49:14 -07:00 committed by Linus Torvalds
parent ecfb251a95
commit c51d3dac32
1 changed files with 1 additions and 1 deletions

View File

@ -1065,7 +1065,7 @@ sub output_struct_man(%) {
}
print "};\n.br\n";
print ".SH Arguments\n";
print ".SH Members\n";
foreach $parameter (@{$args{'parameterlist'}}) {
($parameter =~ /^#/) && next;