diff options
Diffstat (limited to 'hack/xref-helpmsgs-manpages')
-rwxr-xr-x | hack/xref-helpmsgs-manpages | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hack/xref-helpmsgs-manpages b/hack/xref-helpmsgs-manpages index 1f022531e..7c07a4f01 100755 --- a/hack/xref-helpmsgs-manpages +++ b/hack/xref-helpmsgs-manpages @@ -135,7 +135,7 @@ sub xref_by_help { } else { my $man = $man->{_path} || 'man'; - warn "$ME: podman @subcommand --help lists $k, but $k not in $man\n"; + warn "$ME: 'podman @subcommand --help' lists '$k', which is not in $man\n"; ++$Errs; } } @@ -186,7 +186,7 @@ sub xref_by_man { # Special case: podman completion is a hidden command next if $k eq 'completion'; - warn "$ME: podman @subcommand: $k in $man, but not --help\n"; + warn "$ME: 'podman @subcommand': $k in $man, but not --help\n"; ++$Errs; } } |