From 6c486c667b71d2edb2c2baabfe76c5ad7b47b821 Mon Sep 17 00:00:00 2001 From: Liam Goodacre Date: Fri, 1 Jun 2018 18:18:02 +0100 Subject: [PATCH] Remove mention of rows in Uncurried Effect docs --- src/Effect/Uncurried.purs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/Effect/Uncurried.purs b/src/Effect/Uncurried.purs index d65d347..bdc1927 100644 --- a/src/Effect/Uncurried.purs +++ b/src/Effect/Uncurried.purs @@ -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