Skip to content

Commit

Permalink
Fix module links in Haddock comments
Browse files Browse the repository at this point in the history
  • Loading branch information
sol committed Feb 10, 2012
1 parent 55ab832 commit 41c0434
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Data/Aeson/Types/Class.hs
Expand Up @@ -103,11 +103,11 @@ class GFromJSON f where
-- Instead of manually writing your 'ToJSON' instance, there are three options
-- to do it automatically:
--
-- * 'Data.Aeson.TH' provides template-haskell functions which will derive an
-- * "Data.Aeson.TH" provides template-haskell functions which will derive an
-- instance at compile-time. The generated instance is optimized for your type
-- so will probably be more efficient than the following two options:
--
-- * 'Data.Aeson.Generic' provides a generic @toJSON@ function that accepts any
-- * "Data.Aeson.Generic" provides a generic @toJSON@ function that accepts any
-- type which is an instance of 'Data'.
--
-- * If your compiler has support for the @DeriveGeneric@ and
Expand Down Expand Up @@ -164,11 +164,11 @@ class ToJSON a where
-- Instead of manually writing your 'FromJSON' instance, there are three options
-- to do it automatically:
--
-- * 'Data.Aeson.TH' provides template-haskell functions which will derive an
-- * "Data.Aeson.TH" provides template-haskell functions which will derive an
-- instance at compile-time. The generated instance is optimized for your type
-- so will probably be more efficient than the following two options:
--
-- * 'Data.Aeson.Generic' provides a generic @fromJSON@ function that parses to
-- * "Data.Aeson.Generic" provides a generic @fromJSON@ function that parses to
-- any type which is an instance of 'Data'.
--
-- * If your compiler has support for the @DeriveGeneric@ and
Expand Down

0 comments on commit 41c0434

Please sign in to comment.