servant-pandoc 0.1 → 0.1.0.1
raw patch · 2 files changed
+2/−2 lines, 2 files
Files
- servant-pandoc.cabal +1/−1
- src/Servant/Docs/Pandoc.hs +1/−1
servant-pandoc.cabal view
@@ -10,7 +10,7 @@ -- PVP summary: +-+------- breaking API changes -- | | +----- non-breaking API additions -- | | | +--- code changes with no API change-version: 0.1+version: 0.1.0.1 -- A short (one-line) description of the package. synopsis: Use Pandoc to render servant API documentation
src/Servant/Docs/Pandoc.hs view
@@ -97,7 +97,7 @@ B.definitionList ( [(B.strong "Values", [B.plain (B.emph- (foldr (\a b -> B.str a <> B.str "," <> B.space <> b) mempty values))])+ (foldr1 (\a b -> a <> B.str "," <> B.space <> b) (map B.str values)))]) | not (null values) || param ^. paramKind /= Flag] ++ [(B.strong "Description",