Skip to content

Commit fdf4522

Browse files
committed
Fix issue with $/.html being attempted to be created
1 parent bf302b8 commit fdf4522

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

htmlify.p6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ sub write-disambiguation-files($dr) {
530530
});
531531
}
532532
my $html = p2h($pod, 'routine');
533-
spurt "html/$name.html", $html;
533+
spurt "html/$name.subst(/<[:/\]>/,'_').html", $html;
534534
}
535535
say '';
536536
}

lib/Language/objects.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ instances, and roles are meant for managing behavior and code reuse.
447447
Roles are immutable as soon as the compiler parses the closing bracket of the
448448
role declaration.
449449
450-
=head2 Role Application
450+
=head2 Z<>Role Application
451451
452452
Role application differs significantly from class inheritance. When a role
453453
is applied to a class, the methods of that role are copied into the class.

0 commit comments

Comments
 (0)