replace-attoparsec 1.4.0.0 → 1.4.1.0
raw patch · 3 files changed
+5/−5 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- replace-attoparsec.cabal +1/−1
- src/Replace/Attoparsec/ByteString.hs +2/−2
- src/Replace/Attoparsec/Text.hs +2/−2
replace-attoparsec.cabal view
@@ -1,5 +1,5 @@ name: replace-attoparsec-version: 1.4.0.0+version: 1.4.1.0 cabal-version: 1.18 synopsis: Find, replace, and split string patterns with Attoparsec parsers (instead of regex) homepage: https://github.com/jamesdbrock/replace-attoparsec
src/Replace/Attoparsec/ByteString.hs view
@@ -100,7 +100,7 @@ -- If you want to capture the matched string, then combine the pattern -- parser @sep@ with 'Data.Attoparsec.ByteString.match'. ----- With the matched string, we can reconstruct in input string.+-- With the matched string, we can reconstruct the input string. -- For all @input@, @sep@, if -- -- @@@ -149,7 +149,7 @@ -- If you want to capture the matched strings, then combine the pattern -- parser @sep@ with 'Data.Attoparsec.ByteString.match'. ----- With the matched strings, we can reconstruct in input string.+-- With the matched strings, we can reconstruct the input string. -- For all @input@, @sep@, if -- -- @
src/Replace/Attoparsec/Text.hs view
@@ -101,7 +101,7 @@ -- If you want to capture the matched string, then combine the pattern -- parser @sep@ with 'Data.Attoparsec.Text.match'. ----- With the matched string, we can reconstruct in input string.+-- With the matched string, we can reconstruct the input string. -- For all @input@, @sep@, if -- -- @@@ -150,7 +150,7 @@ -- If you want to capture the matched strings, then combine the pattern -- parser @sep@ with 'Data.Attoparsec.Text.match'. ----- With the matched strings, we can reconstruct in input string.+-- With the matched strings, we can reconstruct the input string. -- For all @input@, @sep@, if -- -- @