packages feed

bookhound 0.1.12.0 → 0.1.13.0

raw patch · 7 files changed

+10/−10 lines, 7 files

Files

bookhound.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack  name:           bookhound-version:        0.1.12.0+version:        0.1.13.0 synopsis:       Simple Parser Combinators description:    Please see the README on GitHub at <https://github.com/albertprz/bookhound#readme> category:       Parser Combinators
src/Bookhound/ParserCombinators.hs view
@@ -7,9 +7,9 @@                           anySepBy, someSepBy, multipleSepBy, sepByOp,                           (<|>), (<?>), (<#>), (->>-), (|?), (|*), (|+), (|++))  where -import Bookhound.Internal.Applicative (extract)-import Bookhound.Internal.Foldable    (hasMultiple, hasSome)-import Bookhound.Internal.String      (ToString (..))+import Bookhound.Utils.Applicative (extract)+import Bookhound.Utils.Foldable    (hasMultiple, hasSome)+import Bookhound.Utils.String      (ToString (..)) import Bookhound.Parser               (Parser, allOf, anyOf, char, check,                                        except, isMatch, withError) 
src/Bookhound/Utils/Applicative.hs view
@@ -1,4 +1,4 @@-module Bookhound.Internal.Applicative where+module Bookhound.Utils.Applicative where   extract :: Applicative m => m a1 -> m a2 -> m b -> m b
src/Bookhound/Utils/DateTime.hs view
@@ -1,6 +1,6 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} -module Bookhound.Internal.DateTime where+module Bookhound.Utils.DateTime where  import Data.Time (LocalTime (..), ZonedTime (..)) 
src/Bookhound/Utils/Foldable.hs view
@@ -1,6 +1,6 @@-module Bookhound.Internal.Foldable where+module Bookhound.Utils.Foldable where -import Bookhound.Internal.String (indent)+import Bookhound.Utils.String (indent) import Data.Foldable             as Foldable (Foldable (toList)) import Data.List                 (intercalate) 
src/Bookhound/Utils/Map.hs view
@@ -1,4 +1,4 @@-module Bookhound.Internal.Map where+module Bookhound.Utils.Map where  import Data.Map (Map, elems, keys) 
src/Bookhound/Utils/String.hs view
@@ -1,4 +1,4 @@-module Bookhound.Internal.String where+module Bookhound.Utils.String where  import Data.List (intercalate) import Data.Text (Text, unpack)