Skip to content

Commit

Permalink
Fix old Perl nomenclature
Browse files Browse the repository at this point in the history
  • Loading branch information
coke committed Nov 18, 2023
1 parent cbbc5a6 commit ec0007f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/missing-types.raku
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ my $t = Doc::TypeGraph.new-from-file('type-graph.txt');
for $t.sorted -> $type {
next if $type.name.index('Metamodel').defined || $type.name eq 'PROCESS';
my $actual = try ::($type.name);
printf "%-40s not defined in this Perl\n", $type.name()
printf "%-40s not defined in this version of Raku\n", $type.name()
if $actual === Any and $type.name ne "Any" | "Failure" | "Nil";
next unless $actual.^name eq $type.name;
my $filename = 'doc/Type/' ~ $type.name.subst(:g, '::', '/') ~ '.rakudoc';
Expand Down

0 comments on commit ec0007f

Please sign in to comment.