Skip to content

Commit fe6bcef

Browse files
committed
more docs
1 parent b9e1148 commit fe6bcef

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,9 @@ runPar (f <$> Par (Ajax.get "http://foo.com") <*> Par (Ajax.get "http://foo.com"
206206

207207
The `(<|>)` operator of the `Alt` instance of `Par` allows you to race two asynchronous computations, and use whichever value comes back first (or the first error, if both err).
208208

209-
Finally, the `runPar` function allows you to unwrap the `Aff` and return to normal monadic (sequential) composition.
209+
The `runPar` function allows you to unwrap the `Aff` and return to normal monadic (sequential) composition.
210+
211+
A parallel computation can be canceled if both of its individual components can be canceled.
210212

211213
# API Docs
212214

0 commit comments

Comments
 (0)