Skip to content

Commit

Permalink
RakuAST: fixed borked (private) method call
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed Jul 2, 2023
1 parent d72c562 commit 15f9685
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core.c/RakuAST/Fixups.pm6
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ augment class RakuAST::Doc::Markup {
self.set-meta($_) with self!extract-meta;
}
elsif $letter eq 'X' {
if self.extract-meta -> $meta {
if self!extract-meta -> $meta {
self.add-meta(.split(',').List)
for $meta.split(';');
}
Expand Down

0 comments on commit 15f9685

Please sign in to comment.