aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorJani Nikula <jani.nikula@intel.com>2016-05-28 00:48:17 +0300
committerJani Nikula <jani.nikula@intel.com>2016-05-30 13:39:02 +0300
commitd4b08e0cd2d74eb652d580607982d5054dc42991 (patch)
tree3863c0985e23576b197a260feca3e7cd5ece3a44 /scripts
parentkernel-doc: strip leading whitespace from continued param descs (diff)
downloadlinux-dev-d4b08e0cd2d74eb652d580607982d5054dc42991.tar.xz
linux-dev-d4b08e0cd2d74eb652d580607982d5054dc42991.zip
kernel-doc/rst: use *undescribed* instead of _undescribed_
The latter isn't special to rst. Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/kernel-doc4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/kernel-doc b/scripts/kernel-doc
index f6f37e71dc08..19cee0cd53a3 100755
--- a/scripts/kernel-doc
+++ b/scripts/kernel-doc
@@ -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";
}
@@ -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";
}