Skip to content

Commit

Permalink
kernel-doc/rst: use *undescribed* instead of _undescribed_
Browse files Browse the repository at this point in the history
The latter isn't special to rst.

Signed-off-by: Jani Nikula <[email protected]>
  • Loading branch information
jnikula committed May 30, 2016
1 parent b7886de commit d4b08e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/kernel-doc
Original file line number Diff line number Diff line change
Expand Up @@ -1839,7 +1839,7 @@ sub output_function_rst(%) {
$args{'parameterdescs'}{$parameter_name} ne $undescribed) {
output_highlight_rst($args{'parameterdescs'}{$parameter_name});
} else {
print " _undescribed_\n";
print " *undescribed*\n";
}
print "\n";
}
Expand Down Expand Up @@ -1882,7 +1882,7 @@ sub output_enum_rst(%) {
if ($args{'parameterdescs'}{$parameter} ne $undescribed) {
output_highlight_rst($args{'parameterdescs'}{$parameter});
} else {
print " _undescribed_\n";
print " *undescribed*\n";
}
print "\n";
}
Expand Down

0 comments on commit d4b08e0

Please sign in to comment.