summaryrefslogtreecommitdiffstats
path: root/Codec/MIME/Type.hs
diff options
context:
space:
mode:
authorodr <olshanskydr@gmail.com>2014-01-11 13:18:20 +0400
committerodr <olshanskydr@gmail.com>2014-01-11 13:18:20 +0400
commit1823a3dd5443d98eab577988e9627fe74f3491fc (patch)
tree7c8c0537f528b8d30eb29c4305b26f5ac713706c /Codec/MIME/Type.hs
parent4203423f5a55108d82ecd5f8e6c2b5da8fdc630d (diff)
bugs fixed
Diffstat (limited to 'Codec/MIME/Type.hs')
-rw-r--r--Codec/MIME/Type.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Codec/MIME/Type.hs b/Codec/MIME/Type.hs
index 68a1b65..2ae9abd 100644
--- a/Codec/MIME/Type.hs
+++ b/Codec/MIME/Type.hs
@@ -52,7 +52,7 @@ data MIMEType
| Multipart Multipart
| Text TextType
| Video SubType
- | Other T.Text SubType
+ | Other {otherType :: T.Text, otherSubType :: SubType}
deriving ( Show, Ord, Eq )
showMIMEType :: MIMEType -> T.Text