Skip to content

Commit e3c4294

Browse files
committed
Adding more info in htmlify to try and find error in #2270
1 parent f085b09 commit e3c4294

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

htmlify.p6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -918,7 +918,7 @@ sub write-index-files() {
918918
}
919919

920920
sub write-main-index(:$kind, :&summary = {Nil}) {
921-
say "Writing html/$kind.html ...";
921+
say "Writing main index html/$kind.html ...";
922922
spurt "html/$kind.html", p2h(pod-with-title(
923923
"Perl 6 {$kind.tc}s",
924924
pod-block(
@@ -943,7 +943,7 @@ sub write-main-index(:$kind, :&summary = {Nil}) {
943943

944944
# XXX: Only handles normal routines, not types nor operators
945945
sub write-sub-index(:$kind, :$category, :&summary = {Nil}) {
946-
say "Writing html/$kind-$category.html ...";
946+
say "Writing sub-index html/$kind-$category.html ...";
947947
my $this-category = $category.tc eq "Exceptions" ?? "Exception" !! $category.tc;
948948
spurt "html/$kind-$category.html", p2h(pod-with-title(
949949
"Perl 6 {$this-category} {$kind.tc}s",

0 commit comments

Comments
 (0)