Skip to content

Commit 4801399

Browse files
committed
Merge pull request #135 from dnmfarrell/master
fix typos
2 parents 70321a6 + 8e3c7d4 commit 4801399

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/Type/Iterable.pod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ For example
4141
because C<< <a b> >> is a L<List|/type/List> and thus iterable, so
4242
C<< (<a b>, 'c').flat >> returns C<('a', 'b', 'c')>, which has three elems.
4343
44-
Note that the flatenning is recursive, so C<((("a", "b"), "c"), "d").flat>
44+
Note that the flattening is recursive, so C<((("a", "b"), "c"), "d").flat>
4545
returns C<("a", "b", "c", "d")>, but it does not flatten itemized sublists:
4646
4747
say ($('a', 'b'), 'c').perl; # ($("a", "b"), "c").Seq
@@ -57,7 +57,7 @@ Returns a lazy iterable wrapping the invocant.
5757
method hyper(Int(Cool) :$batch = 64, Int(Cool) :$degree = 4)
5858
returns Iterable
5959
60-
Returns another Iterable that is pontetially iterated in parallel, with a
60+
Returns another Iterable that is potentially iterated in parallel, with a
6161
given batch size and degree of parallelism.
6262
6363
The order of elements are preserved.
@@ -67,7 +67,7 @@ The order of elements are preserved.
6767
method race(Int(Cool) :$batch = 64, Int(Cool) :$degree = 4)
6868
returns Iterable
6969
70-
Returns another Iterable that is pontetially iterated in parallel, with a
70+
Returns another Iterable that is potentially iterated in parallel, with a
7171
given batch size and degree of parallelism.
7272
7373
Unlike C<hyper>, C<race> does not preserve the order of elements.

0 commit comments

Comments
 (0)