Skip to content

Commit facb3fb

Browse files
committed
Rename subroutine in missing-methods.p6
1 parent 9892b92 commit facb3fb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

util/missing-methods.p6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ from outside.
2929
my $t = Perl6::TypeGraph.new-from-file('type-graph.txt');
3030

3131
for $t.sorted -> $type {
32-
for methods-for-type($type) -> $method {
32+
for methods-in-type($type) -> $method {
3333
show-undoc-method($type.name ~ '.' ~ $method.name);
3434
}
3535
}
3636

37-
sub methods-for-type($type) {
37+
sub methods-in-type($type) {
3838
my $type_name = ::($type.name);
3939
return $type_name.^methods(:local);
4040
}

0 commit comments

Comments
 (0)