aboutsummaryrefslogtreecommitdiff
path: root/util/find-doc-nits
diff options
context:
space:
mode:
Diffstat (limited to 'util/find-doc-nits')
-rwxr-xr-xutil/find-doc-nits7
1 files changed, 7 insertions, 0 deletions
diff --git a/util/find-doc-nits b/util/find-doc-nits
index f02edab..c508e24 100755
--- a/util/find-doc-nits
+++ b/util/find-doc-nits
@@ -601,6 +601,13 @@ sub wording {
}
err($id, "found 'epoch' should use 'Epoch'")
if $contents =~ /\bepoch\b/;
+ if ( $id =~ m@man1/@ ) {
+ err($id, "found 'tool' in NAME, should use 'command'")
+ if $contents =~ /=head1 NAME.*\btool\b.*=head1 SYNOPSIS/s;
+ err($id, "found 'utility' in NAME, should use 'command'")
+ if $contents =~ /NAME.*\butility\b.*=head1 SYNOPSIS/s;
+
+ }
}
# Perform all sorts of nit/error checks on a manpage