From 7453ab5f8be81ed19e357e1f3794c96ccd25ac6f Mon Sep 17 00:00:00 2001 From: David Hugh Malcolm Date: Aug 02 2018 18:49:30 +0000 Subject: Remove stray "x" from summary line Currently this emits a line like: > Summary: 15x OK, 2 warnings, 8 errors The "x" appears to be a typo; this patch removes it, leading to: > Summary: 15 OK, 2 warnings, 8 errors --- diff --git a/man-page-day.sh b/man-page-day.sh index 34e8720..a211f16 100755 --- a/man-page-day.sh +++ b/man-page-day.sh @@ -351,6 +351,6 @@ done rmdir $tmpdir -msg "Summary: ${stats_ok}x OK, $stats_warn warnings, $stats_error errors" +msg "Summary: ${stats_ok} OK, $stats_warn warnings, $stats_error errors" exit 0