aboutsummaryrefslogtreecommitdiffstats
path: root/src/VeriFuzz/Internal.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/VeriFuzz/Internal.hs')
-rw-r--r--src/VeriFuzz/Internal.hs16
1 files changed, 7 insertions, 9 deletions
diff --git a/src/VeriFuzz/Internal.hs b/src/VeriFuzz/Internal.hs
index b5ce3ba..c7105fc 100644
--- a/src/VeriFuzz/Internal.hs
+++ b/src/VeriFuzz/Internal.hs
@@ -3,7 +3,7 @@ Module : VeriFuzz.Internal
Description : Shared high level code used in the other modules internally.
Copyright : (c) 2018-2019, Yann Herklotz
License : BSD-3
-Maintainer : ymherklotz [at] gmail [dot] com
+Maintainer : yann [at] yannherklotz [dot] com
Stability : experimental
Portability : POSIX
@@ -20,14 +20,12 @@ module VeriFuzz.Internal
)
where
-import Data.ByteString ( ByteString )
-import Data.ByteString.Builder ( byteStringHex
- , toLazyByteString
- )
-import qualified Data.ByteString.Lazy as L
-import Data.Text ( Text )
-import qualified Data.Text as T
-import Data.Text.Encoding ( decodeUtf8 )
+import Data.ByteString (ByteString)
+import Data.ByteString.Builder (byteStringHex, toLazyByteString)
+import qualified Data.ByteString.Lazy as L
+import Data.Text (Text)
+import qualified Data.Text as T
+import Data.Text.Encoding (decodeUtf8)
-- | Function to show a bytestring in a hex format.
showBS :: ByteString -> Text