Documentation: fixes an incorrect parameter reference

This commit is contained in:
Marko Dimjašević 2019-02-01 22:32:25 +01:00 committed by Alexis King
parent eb93c6b064
commit ec84ae4e23

View File

@ -84,7 +84,7 @@ import Data.OpenUnion
type Arr effs a b = a -> Eff effs b type Arr effs a b = a -> Eff effs b
-- | An effectful function from @a :: *@ to @b :: *@ that is a composition of -- | An effectful function from @a :: *@ to @b :: *@ that is a composition of
-- several effectful functions. The paremeter @eff :: [* -> *]@ describes the -- several effectful functions. The paremeter @effs :: [* -> *]@ describes the
-- overall effect. The composition members are accumulated in a type-aligned -- overall effect. The composition members are accumulated in a type-aligned
-- queue. -- queue.
type Arrs effs a b = FTCQueue (Eff effs) a b type Arrs effs a b = FTCQueue (Eff effs) a b