Skip to content

Commit 1c9f0f6

Browse files
committed
update docs
1 parent fd93da2 commit 1c9f0f6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

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

189189
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).
190190

191-
Finally, the `runPar` function allows you to unwrap the `Aff` and return to normal monaidic (sequential) composition.
191+
Finally, the `runPar` function allows you to unwrap the `Aff` and return to normal monadic (sequential) composition.
192192

193193
# API Docs
194194

examples/src/Examples.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ module Examples where
5858
test_apathize :: Test
5959
test_apathize = do
6060
apathize $ throwError (error "Oh noes!")
61-
liftEff $ trace "Success: Didn't care about return value"
61+
liftEff $ trace "Success: Exceptions don't stop the apathetic"
6262

6363
test_putTakeVar :: TestVar
6464
test_putTakeVar = do

output/examples.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)