Skip to content

Commit 9892b92

Browse files
committed
Replace temporary variable in sub call
1 parent 9a293e4 commit 9892b92

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

util/missing-methods.p6

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ my $t = Perl6::TypeGraph.new-from-file('type-graph.txt');
3030

3131
for $t.sorted -> $type {
3232
for methods-for-type($type) -> $method {
33-
my $qualified_method_name = $type.name ~ '.' ~ $method.name;
34-
show-undoc-method($qualified_method_name);
33+
show-undoc-method($type.name ~ '.' ~ $method.name);
3534
}
3635
}
3736

0 commit comments

Comments
 (0)