Skip to content

Commit 098a431

Browse files
committed
Merge branch 'master' of github.com:perl6/doc
2 parents 7069d05 + f8f82bc commit 098a431

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

doc/Language/functions.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -981,7 +981,7 @@ L<C<@*ARGS>|/language/variables#Dynamic_variables>, which can be mutated before
981981
being processed by C<MAIN>.
982982
983983
984-
Unlike other ordinary functions, any return value prodived by C<MAIN> will be
984+
Unlike other ordinary functions, any return value provided by C<MAIN> will be
985985
ignored by the invoker, even if explicitly set by mean of a C<return> statement
986986
(that will terminate the C<MAIN> function). The default return code of C<MAIN> is always
987987
zero (C<0>, success).

doc/Language/traps.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -745,7 +745,7 @@ implementation is actually right.
745745
746746
=head2 C<$/> changes each time a regular expression is matched
747747
748-
Eash time a regular expression is matched against something, the special
748+
Each time a regular expression is matched against something, the special
749749
variable C<$/> holding the result L<Match object|/type/Match>
750750
is changed accordingly to the result of the match (that could also be C<Nil>).
751751

doc/Type/Array.pod6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,8 +205,8 @@ Example:
205205
206206
Defined as:
207207
208-
multi sub splice(@list, $start = 0, $elems?, *@replacement --> Array)
209-
multi method splice(Array:D $start = 0, $elems?, *@replacement --> Array)
208+
multi sub splice(@list, $start = 0, $elems?, *@replacement --> Array)
209+
multi method splice(Array:D: $start = 0, $elems?, *@replacement --> Array)
210210
211211
Deletes C<$elems> elements starting from index C<$start> from the C<Array>,
212212
returns them and replaces them by C<@replacement>. If C<$elems> is omitted,

doc/Type/Proc/Async.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ Use L«C<.Supply>|/type/Proc::Async#method_Supply» for merged STDOUT and STDERR
200200
multi method bind-stdin(Proc::Async::Pipe:D $pipe)
201201
202202
Sets a handle or a L<Pipe|/type/proc/async/Pipe> as a source of STDIN. STDIN of
203-
the target process must be writeable or
203+
the target process must be writable or
204204
L<X::Proc::Async::BindOrUse|/type/x/proc/async/BindOrUse> will be thrown.
205205
206206
=head2 method bind-stdout

xt/words.pws

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ bignum
109109
bigpage
110110
bigrat
111111
bindkey
112+
bindoruse
112113
binmode
113114
bitwise
114115
bom
@@ -512,6 +513,7 @@ invocant's
512513
invocantmarker
513514
invocants
514515
invocationprotocol
516+
invoker
515517
ipc
516518
irc
517519
isa

0 commit comments

Comments
 (0)