Remove Generic

This commit is contained in:
Chris Done 2015-05-13 16:26:24 +02:00
parent a68b46b060
commit 07aa83ca19
1 changed files with 1 additions and 2 deletions

View File

@ -10,7 +10,6 @@ module Path.Internal
where where
import Data.Data import Data.Data
import GHC.Generics
-- | Path of some base and type. -- | Path of some base and type.
-- --
@ -22,7 +21,7 @@ import GHC.Generics
-- All directories end in a trailing separator. There are no duplicate -- All directories end in a trailing separator. There are no duplicate
-- path separators @\/\/@, no @..@, no @.\/@, no @~\/@, etc. -- path separators @\/\/@, no @..@, no @.\/@, no @~\/@, etc.
newtype Path b t = Path FilePath newtype Path b t = Path FilePath
deriving (Typeable,Generic) deriving (Typeable)
-- | String equality. -- | String equality.
-- --