Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions src/Effect/Uncurried.purs
Original file line number Diff line number Diff line change
Expand Up @@ -122,10 +122,8 @@
-- | follows:
-- |
-- | * `EffectFn{N}` means, a curried function which accepts N arguments and
-- | performs some effects. The first type argument is the row of effects,
-- | which works exactly the same way as in `Effect`. The last type argument
-- | is the return type. All other arguments are the actual function's
-- | arguments.
-- | performs some effects. The last type argument is the return type. All
-- | other arguments are the actual function's arguments.
-- | * `runEffectFn{N}` takes an `EffectFn` of N arguments, and converts it into the
-- | normal PureScript form: a curried function which returns an Effect action.
-- | * `mkEffectFn{N}` is the inverse of `runEffectFn{N}`. It can be useful for
Expand Down