packages feed

language-elm 0.0.10.0 → 0.0.10.1

raw patch · 3 files changed

+3/−3 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

README.md view
@@ -18,7 +18,7 @@  Declare a program type ```haskell-program :: Program+program : Program program =     Program         "Tuple"
language-elm.cabal view
@@ -1,5 +1,5 @@ name:               language-elm-version:            0.0.10.0+version:            0.0.10.1 synopsis:           Generate elm code description:        Generate elm code from an ast homepage:           https://github.com/eliaslfox/language-elm#readme
src/Elm/Decleration.hs view
@@ -20,7 +20,7 @@ toDocD dec =     case dec of         Dec str typeDec args body ->-               text str <+> text "::" <+> toDocT typeDec $+$+               text str <+> text ":" <+> toDocT typeDec $+$                hang (text str <+> (hsep . map toDoc $ args) <+> text "=") 4 (toDoc body)          DecTypeAlias str typeParams t->