diff options
Diffstat (limited to 'ghc/compiler/count_lines')
-rw-r--r-- | ghc/compiler/count_lines | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/compiler/count_lines b/ghc/compiler/count_lines index aebf0c4080..43ca79e68a 100644 --- a/ghc/compiler/count_lines +++ b/ghc/compiler/count_lines @@ -54,7 +54,7 @@ printf "\n%-20s %6d %6d\n\n\n", 'TOTAL:', $tot, $totcmts; $tot = 0; $totcmts = 0; -printf "\n Code Comments\n" +printf "\n Code Comments\n"; foreach $m (sort (keys %ModCount)) { printf "%-20s %6d %6d\n", $m, $ModCount{$m}, $ModComments{$m}; $tot += $ModCount{$m}; |