here 1.2.4 → 1.2.5
raw patch · 2 files changed
+3/−3 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- here.cabal +1/−1
- src/Data/String/Here/Interpolated.hs +2/−2
here.cabal view
@@ -1,5 +1,5 @@ name: here-version: 1.2.4+version: 1.2.5 synopsis: Here docs & interpolated strings via quasiquotation description: Here docs & interpolated strings via quasiquotation license: BSD3
src/Data/String/Here/Interpolated.hs view
@@ -75,8 +75,8 @@ combine [] = stringE "" combine parts = foldr1 (\subExpr acc -> [|$subExpr <> $acc|]) parts -toString :: (Show a, Typeable a, IsString b) => a -> b-toString x = fromString $ fromMaybe (show x) (cast x)+toString :: (Show a, Typeable a, Typeable b, IsString b) => a -> b+toString x = fromMaybe (fromString $ show x) (cast x) parseInterp :: String -> Either ParseError [StringPart] parseInterp = parse p_interp ""