recursion 2.2.4.2 → 2.2.4.3
raw patch · 4 files changed
+8/−4 lines, 4 files
Files
- CHANGELOG.md +4/−0
- LICENSE +1/−1
- recursion.cabal +2/−2
- src/Control/Recursion.hs +1/−1
CHANGELOG.md view
@@ -1,5 +1,9 @@ # recursion +## 2.2.4.3++* Fix documentation+ ## 2.2.4.2 * Drop support for Eta
LICENSE view
@@ -1,4 +1,4 @@-Copyright Vanessa McHale (c) 2018-2019+Copyright Vanessa McHale (c) 2018-2020 Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
recursion.cabal view
@@ -1,9 +1,9 @@ cabal-version: 1.18 name: recursion-version: 2.2.4.2+version: 2.2.4.3 license: BSD3 license-file: LICENSE-copyright: Copyright: (c) 2018-2019 Vanessa McHale+copyright: Copyright: (c) 2018-2020 Vanessa McHale maintainer: vamchale@gmail.com author: Vanessa McHale bug-reports: https://hub.darcs.net/vmchale/recursion/issues
src/Control/Recursion.hs view
@@ -191,7 +191,7 @@ "ana/Nu" forall (f :: a -> f a). ana f = Nu f; #-} --- | Hylomorphism; fold a structure while buildiung it up.+-- | Hylomorphism; fold a structure while building it up. hylo :: Functor f => (f b -> b) -> (a -> f a) -> a -> b hylo f g = h where h = f . fmap h . g {-# NOINLINE [0] hylo #-}