We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9f08e5c + 0e30c40 commit ecad75eCopy full SHA for ecad75e
core/shared/src/main/scala/fs2/Task.scala
@@ -331,8 +331,8 @@ object Task extends TaskPlatform with TaskInstances {
331
ref[A].flatMap { ref => ref.set(t) map (_ => ref.get) }
332
333
/**
334
- * Like [[async]], but run the callback in the same thread in the same
335
- * thread, rather than evaluating the callback using a `Strategy`.
+ * Like [[async]], but run the callback in the same thread, rather than
+ * evaluating the callback using a `Strategy`.
336
*/
337
def unforkedAsync[A](register: (Attempt[A] => Unit) => Unit): Task[A] =
338
async(register)(Strategy.sequential)
0 commit comments