Skip to content

Commit ed062b0

Browse files
committed
fix minor typos
1 parent 0344de8 commit ed062b0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/Language/subscripts.pod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ To check if I<all> elements of a slice exist, use an L<all> junction:
239239
240240
C<:exists> can be combined with the L<#:delete> and L<#:p>/L<#:kv> adverbs -
241241
in which case the behavior is determined by those adverbs, except that any
242-
returned element I<value> is replaced with the corresponsing L<Bool> indicating
242+
returned element I<value> is replaced with the corresponding L<Bool> indicating
243243
element I<existence>.
244244
245245
See L<#method EXISTS-POS> and L<#method EXISTS-KEY> for the underlying
@@ -427,7 +427,7 @@ insert anything invalid into it):
427427
}
428428
429429
However, HTTP header field names are supposed to be case-insensitive (and
430-
preferred in camel-case). We can accomodate this by taking the C<*-KEY>
430+
preferred in camel-case). We can accommodate this by taking the C<*-KEY>
431431
and C<push> methods out of the C<handles> list, and implementing them
432432
separately like this:
433433

lib/Type/Supply.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ The C<&closing> callback is called when somebody closes the tap (which
8282
terminates that subscription, but keeps the supply as a whole in tact).
8383
8484
Method C<tap> returns an object of type L<Tap|/type/Tap>, on which you can
85-
call the C<close> method to cancle the subscription.
85+
call the C<close> method to cancel the subscription.
8686
8787
my $s = Supply.interval(1);
8888
my $t = $s.tap(-> $v { say $v }, done => { say "no more ticks" };

0 commit comments

Comments
 (0)