QuasiText 0.1.2.4 → 0.1.2.5
raw patch · 2 files changed
+2/−3 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- QuasiText.cabal +1/−2
- src/Text/QuasiText.hs +1/−1
QuasiText.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: QuasiText-version: 0.1.2.4+version: 0.1.2.5 synopsis: A QuasiQuoter for Text. description: A QuasiQuoter for interpolating values into Text strings. homepage: https://github.com/mikeplus64/QuasiText@@ -16,6 +16,5 @@ library exposed-modules: Text.QuasiText- -- other-modules: build-depends: base >= 4.5.0.0 && < 5.0.0.0, template-haskell, haskell-src-meta, attoparsec, text hs-source-dirs: src
src/Text/QuasiText.hs view
@@ -90,7 +90,7 @@ _ -> return [expr, T.singleton paren] parser :: Parser [Chunk]- parser = fmap concat $ flip manyTill (endOfInput <|> endOfLine) $ do+ parser = fmap concat $ flip manyTill endOfInput $ do text <- takeTill (== '$') end <- atEnd if end