Skip to content

Commit 788a44b

Browse files
committed
Minor reword of multi method documentation
Close #2026
1 parent a0e58c1 commit 788a44b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/Language/functions.pod6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,9 +223,9 @@ sub bar() returns Int { return }; bar; # Nil returned
223223
224224
=head2 X<Multi-dispatch|declarator,multi>
225225
226-
Perl 6 allows you to write several routines with the same name but different
226+
Perl 6 allows for writing several routines with the same name but different
227227
signatures. When the routine is called by name, the runtime environment
228-
determines the proper I<candidate> and calls it.
228+
determines the proper I<candidate> and invokes it.
229229
230230
Each candidate is declared with the C<multi> keyword. Dispatch happens depending
231231
on the number (L<arity|/type/Routine#(Code)_method_arity>), type and name of arguments.

0 commit comments

Comments
 (0)