Skip to content

Commit 9ec5b2e

Browse files
authored
Fix spelling of method names: find_method*
1 parent fe2d4b4 commit 9ec5b2e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/Type/Metamodel/MROBasedMethodDispatch.pod6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ VM-specific sentinel value (typically a low-level NULL value) that can be tested
2121
with a test for L<definedness|/routine/defined>:
2222
2323
for <upper-case uc> {
24-
Str.^findmethod: $^meth andthen .("foo").say
24+
Str.^find_method: $^meth andthen .("foo").say
2525
orelse "method `$meth` not found".say
2626
}
2727
# OUTPUT:
@@ -32,7 +32,7 @@ If C<:no_fallback> is supplied, fallback methods are not considered.
3232
3333
=head2 method find_method_qualified
3434
35-
method find_method(Metamodel::MROBasedMethodDispatch:D: $obj, $type, $name)
35+
method find_method_qualified(Metamodel::MROBasedMethodDispatch:D: $obj, $type, $name)
3636
3737
Given a method name and a type, returns the method from that type. This is
3838
used in calls like

0 commit comments

Comments
 (0)