hindent 3.2 → 3.3
raw patch · 2 files changed
+2/−2 lines, 2 filesdep ~basedep ~mtlPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base, mtl
API changes (from Hackage documentation)
- HIndent.Pretty: class (Annotated ast, Typeable ast) => Pretty ast
+ HIndent.Pretty: class (Annotated ast, Typeable1 ast) => Pretty ast
Files
- hindent.cabal +1/−1
- src/HIndent/Pretty.hs +1/−1
hindent.cabal view
@@ -1,5 +1,5 @@ name: hindent-version: 3.2+version: 3.3 synopsis: Extensible Haskell pretty printer description: Extensible Haskell pretty printer. Both a library and an executable. .
src/HIndent/Pretty.hs view
@@ -74,7 +74,7 @@ -- * Pretty printing class -- | Pretty printing class.-class (Annotated ast,Typeable ast) => Pretty ast where+class (Annotated ast,Typeable1 ast) => Pretty ast where prettyInternal :: ast NodeInfo -> Printer () -- | Pretty print using extenders.