Merge pull request #20 from happy4crazy/foldIO-typo

Fix typo in Shell `foldIO` law
This commit is contained in:
Gabriel Gonzalez 2015-02-09 16:36:10 -08:00
commit fde69d0a56

View file

@ -47,7 +47,7 @@
> -- For every shell `s`:
> foldIO s (FoldM step begin done) = do
> x <- step
> x <- begin
> x' <- foldIO s (FoldM step (return x) return)
> done x'