We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0e58c1 commit 788a44bCopy full SHA for 788a44b
doc/Language/functions.pod6
@@ -223,9 +223,9 @@ sub bar() returns Int { return }; bar; # Nil returned
223
224
=head2 X<Multi-dispatch|declarator,multi>
225
226
-Perl 6 allows you to write several routines with the same name but different
+Perl 6 allows for writing several routines with the same name but different
227
signatures. When the routine is called by name, the runtime environment
228
-determines the proper I<candidate> and calls it.
+determines the proper I<candidate> and invokes it.
229
230
Each candidate is declared with the C<multi> keyword. Dispatch happens depending
231
on the number (L<arity|/type/Routine#(Code)_method_arity>), type and name of arguments.
0 commit comments