Skip to content

Commit 6f90794

Browse files
committed
Fix typo
1 parent e195227 commit 6f90794

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

kernel/shared/src/main/scala/cats/effect/kernel/GenConcurrent.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ trait GenConcurrent[F[_], E] extends GenSpawn[F, E] {
135135
* first, with subsequent actions starting in order as each one completes. Actions which are
136136
* reached earlier in `traverse` order will be started slightly sooner than later actions, in
137137
* a non-blocking fashion. Any errors or self-cancelation will immediately abort the sequence.
138-
* If multiple actios produce errors simultaneously, one of them will be nondeterministically
138+
* If multiple actions produce errors simultaneously, one of them will be nondeterministically
139139
* selected for production. If all actions succeed, their results are returned in the same
140140
* order as their corresponding inputs, regardless of the order in which they executed.
141141
*
@@ -235,7 +235,7 @@ trait GenConcurrent[F[_], E] extends GenSpawn[F, E] {
235235
* first, with subsequent actions starting in order as each one completes. Actions which are
236236
* reached earlier in `foldLeftM` order will be started slightly sooner than later actions, in
237237
* a non-blocking fashion. Any errors or self-cancelation will immediately abort the sequence.
238-
* If multiple actios produce errors simultaneously, one of them will be nondeterministically
238+
* If multiple actions produce errors simultaneously, one of them will be nondeterministically
239239
* selected for production.
240240
*
241241
* The `f` function is run as part of running the action: in parallel and subject to the

0 commit comments

Comments
 (0)