about summary refs log tree commit diff
diff options
context:
space:
mode:
authorlukasepple <git@lukasepple.de>2015-11-01 00:30:38 +0100
committerlukasepple <git@lukasepple.de>2015-11-01 00:30:38 +0100
commit022ec74687a4dba8512f96c65b0a1eca31e1e758 (patch)
tree516822b4398b74f543b991ef2a4e6fd5f06710c9
parentfc2a74fb470726d902ba90a2595a3acd21e572a9 (diff)
Rename Text.Emoji.DataParser to Text.Emoji.Data
-rw-r--r--emoji.cabal2
-rw-r--r--src/Text/Emoji/Data.hs (renamed from src/Text/Emoji/DataParser.hs)4
2 files changed, 3 insertions, 3 deletions
diff --git a/emoji.cabal b/emoji.cabal
index 50f9e94..9a961ff 100644
--- a/emoji.cabal
+++ b/emoji.cabal
@@ -17,7 +17,7 @@ cabal-version:       >=1.10
 
 library
   exposed-modules:     Text.Emoji.Types
-                       Text.Emoji.DataParser
+                       Text.Emoji.Data
   -- other-modules:       
   -- other-extensions:    
   build-depends:       base
diff --git a/src/Text/Emoji/DataParser.hs b/src/Text/Emoji/Data.hs
index e0efd2f..8f4f76e 100644
--- a/src/Text/Emoji/DataParser.hs
+++ b/src/Text/Emoji/Data.hs
@@ -1,5 +1,5 @@
 {-|
-  Module:      Text.Emoji.DataParser
+  Module:      Text.Emoji.Data
   Description: Parser for the emoji-data file format
 
 This module defines the Parsec parser necessary
@@ -9,7 +9,7 @@ unicode consortium.
 
 
 {-# LANGUAGE OverloadedStrings #-}
-module Text.Emoji.DataParser where
+module Text.Emoji.Data where
 
 import           Text.Emoji.Types