Skip to content

Commit

Permalink
Fix spelling of method names: find_method*
Browse files Browse the repository at this point in the history
  • Loading branch information
FROGGS committed Apr 22, 2018
1 parent fe2d4b4 commit 9ec5b2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/Type/Metamodel/MROBasedMethodDispatch.pod6
Expand Up @@ -21,7 +21,7 @@ VM-specific sentinel value (typically a low-level NULL value) that can be tested
with a test for L<definedness|/routine/defined>:
for <upper-case uc> {
Str.^findmethod: $^meth andthen .("foo").say
Str.^find_method: $^meth andthen .("foo").say
orelse "method `$meth` not found".say
}
# OUTPUT:
Expand All @@ -32,7 +32,7 @@ If C<:no_fallback> is supplied, fallback methods are not considered.
=head2 method find_method_qualified
method find_method(Metamodel::MROBasedMethodDispatch:D: $obj, $type, $name)
method find_method_qualified(Metamodel::MROBasedMethodDispatch:D: $obj, $type, $name)
Given a method name and a type, returns the method from that type. This is
used in calls like
Expand Down

0 comments on commit 9ec5b2e

Please sign in to comment.