Skip to content

Commit cf907b9

Browse files
committed
remove lookup as a verb
1 parent a6770ed commit cf907b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ppcs/ppc0033-ampersand-method-calls.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ package Foo {
8989
say "my field: " . private($self);
9090

9191

92-
# can also be used to call package methods. But won't lookup via @ISA
92+
# can also be used to call package methods. But won't look up via @ISA
9393
say "my field: " . $self->&_old_school_private;
9494
# exactly equivalent to:
9595
say "my field: " . _old_school_private($self);

0 commit comments

Comments
 (0)