Fixed comment of Effect type; ordering incorrect and vague.

This commit is contained in:
Craig McLaughlin 2015-10-09 11:43:52 +01:00
parent 6ee21c78fa
commit 7806ff594f

View File

@ -12,9 +12,9 @@ import Data.Vect
||| The Effect type describes effectful computations.
|||
||| This type is parameterised by:
||| + The input resource.
||| + The return type of the computation.
||| + The computation to run on the resource.
||| + The input resource.
||| + The computation to run on the resource given the return value.
Effect : Type
Effect = (x : Type) -> Type -> (x -> Type) -> Type