aboutsummaryrefslogtreecommitdiffstats
path: root/src/Data/Text
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2025-10-23 15:16:50 +0200
committertv <tv@krebsco.de>2025-10-23 15:16:50 +0200
commit30309581b7ae02b466b466af43009b6b1edb9b39 (patch)
tree11c3dc7b026594b917c1c7cd68d09b1f0ee936ad /src/Data/Text
parent53a11f421fb18e8687fa06e5511cea8bd9defc36 (diff)
Data.Text.Extended: dropHEAD0.4.3master
Since text>=2.1.2, Data.Text exports a show function.
Diffstat (limited to 'src/Data/Text')
-rw-r--r--src/Data/Text/Extended.hs12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/Data/Text/Extended.hs b/src/Data/Text/Extended.hs
deleted file mode 100644
index 70eef63..0000000
--- a/src/Data/Text/Extended.hs
+++ /dev/null
@@ -1,12 +0,0 @@
-{-# OPTIONS_GHC -fno-warn-orphans #-}
-module Data.Text.Extended
- ( module Data.Text
- , show
- ) where
-
-import Data.Text
-import Prelude hiding (show)
-import qualified Prelude
-
-show :: Show a => a -> Text
-show = pack . Prelude.show