summaryrefslogtreecommitdiffstats
path: root/src/Blessings/Text.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Blessings/Text.hs')
-rw-r--r--src/Blessings/Text.hs21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/Blessings/Text.hs b/src/Blessings/Text.hs
deleted file mode 100644
index 04572dd..0000000
--- a/src/Blessings/Text.hs
+++ /dev/null
@@ -1,21 +0,0 @@
-{-# OPTIONS_GHC -fno-warn-orphans #-}
-
-module Blessings.Text
- ( module Blessings
- ) where
-
-import Blessings
-import Blessings.Internal
-import Data.Text (Text)
-import qualified Data.Text as T
-
-
-instance Blessable Text where
- length = T.length
- drop = T.drop
- take = T.take
- splitAt = T.splitAt
- break = T.break
- intercalate = T.intercalate
- fromWord8 = T.pack . Prelude.show
- show = T.pack . Prelude.show