Skip to content

Commit ecad75e

Browse files
authored
Merge pull request #816 from sullivan-/series/1.0
fix scaladoc typo
2 parents 9f08e5c + 0e30c40 commit ecad75e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/shared/src/main/scala/fs2/Task.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -331,8 +331,8 @@ object Task extends TaskPlatform with TaskInstances {
331331
ref[A].flatMap { ref => ref.set(t) map (_ => ref.get) }
332332

333333
/**
334-
* Like [[async]], but run the callback in the same thread in the same
335-
* thread, rather than evaluating the callback using a `Strategy`.
334+
* Like [[async]], but run the callback in the same thread, rather than
335+
* evaluating the callback using a `Strategy`.
336336
*/
337337
def unforkedAsync[A](register: (Attempt[A] => Unit) => Unit): Task[A] =
338338
async(register)(Strategy.sequential)

0 commit comments

Comments
 (0)