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.
1 parent 0f73779 commit ba1eaedCopy full SHA for ba1eaed
core/src/main/scala/ox/inScopeRunner.scala
@@ -30,7 +30,7 @@ class InScopeRunner(runInScope: ActorRef[RunInScope]):
30
/** Runs the given function asynchronously, in the scope of the [[Ox]] concurrency scope in which this runner was created.
31
*
32
* `f` should not block and return promptly, not to obstruct execution of other scheduled functions. Typically, it should start a
33
- * background fork. Any exceptions thrown by `f` will be cause the entire scope to end.
+ * background fork. Any exceptions thrown by `f` will cause the entire scope to end.
34
*/
35
def async(f: Ox ?=> Unit): Unit = runInScope.tell(_.apply(f))
36
end InScopeRunner
0 commit comments