aboutsummaryrefslogtreecommitdiffstats
path: root/src/Reaktor/Parser.hs
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2019-01-21 19:14:55 +0100
committertv <tv@krebsco.de>2019-01-21 19:19:05 +0100
commit2842e05c232505c670daee0fffb9a34d5c866217 (patch)
tree90ffcdea7130b5811b6e02f931c5b1cc27a3191f /src/Reaktor/Parser.hs
parentce276eee82ec0b8c4106beb4c51d6f9eb77335c4 (diff)
src: add Data.ByteString.Char8.Extended
Diffstat (limited to 'src/Reaktor/Parser.hs')
-rw-r--r--src/Reaktor/Parser.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Reaktor/Parser.hs b/src/Reaktor/Parser.hs
index bdd2f98..3baaad7 100644
--- a/src/Reaktor/Parser.hs
+++ b/src/Reaktor/Parser.hs
@@ -3,7 +3,7 @@ module Reaktor.Parser where
import Control.Applicative
import Data.Attoparsec.ByteString.Char8
-import qualified Data.ByteString.Char8 as BS
+import qualified Data.ByteString.Char8.Extended as BS
import qualified Data.Char
import Reaktor.Types