Skip to content

Commit d4b08e0

Browse files
committed
kernel-doc/rst: use *undescribed* instead of _undescribed_
The latter isn't special to rst. Signed-off-by: Jani Nikula <jani.nikula@intel.com>
1 parent b7886de commit d4b08e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/kernel-doc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1839,7 +1839,7 @@ sub output_function_rst(%) {
18391839
$args{'parameterdescs'}{$parameter_name} ne $undescribed) {
18401840
output_highlight_rst($args{'parameterdescs'}{$parameter_name});
18411841
} else {
1842-
print " _undescribed_\n";
1842+
print " *undescribed*\n";
18431843
}
18441844
print "\n";
18451845
}
@@ -1882,7 +1882,7 @@ sub output_enum_rst(%) {
18821882
if ($args{'parameterdescs'}{$parameter} ne $undescribed) {
18831883
output_highlight_rst($args{'parameterdescs'}{$parameter});
18841884
} else {
1885-
print " _undescribed_\n";
1885+
print " *undescribed*\n";
18861886
}
18871887
print "\n";
18881888
}

0 commit comments

Comments
 (0)