Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
report writes now also a todo
  • Loading branch information
lichtkind committed May 8, 2012
1 parent 07a09e4 commit e57de33
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion docs/report.pl
Expand Up @@ -42,7 +42,12 @@


# Tester
print "TODO:\n";
open $FH, '<', 'appendix-a-index.txt';
$content = do {local $/; <$FH>};
my $v =()= $content =~ /\&mdash;\n\n/g;
print " empty index entries: $v\n";
open $FH, '<', 'appendix-g-glossary.txt';
$content = do {local $/; <$FH>};
my $v =()= $content =~ /\&mdash;\n\n/g;
print "unanswered glossary terms: $v\n";
print " empty glossary terms: $v\n";

0 comments on commit e57de33

Please sign in to comment.